listenbrainz-content-resolver: use correct version

master
Simon Bruder 2023-10-04 13:39:00 +02:00
parent 5f1bdf496a
commit ac29bf917a
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
1 changed files with 5 additions and 11 deletions

View File

@ -8,7 +8,6 @@
, regex
, scikit-learn
, unidecode
, pythonRelaxDepsHook
, setuptools-scm
}:
let
@ -37,23 +36,21 @@ let
in
buildPythonPackage rec {
pname = "ListenBrainz-Content-Resolver";
# FIXME
# This should actually reflect the real version.
# As there currently are no tagged versions,
# this needs to be forged,
# because pythonRelaxDepsHook has problems with unstable-YYYY-MM-DD as a version.
version = "1.0.0";
version = "unstable-2023-10-03";
src = fetchFromGitHub {
owner = "metabrainz";
repo = pname;
rev = "6caa43df1d17a974ae27a91f1aaf663952cf0ed9";
sha256 = "0000000000000000000000000000000000000000000000000000";
sha256 = "sha256-m11buP7AhpLXmIPK9z3r3Gtr8L6A5MAt+SyuIT5bK9Q=";
};
postPatch = ''
# Make model discoverable by setuptools find_packages
touch lb_content_resolver/model/__init__.py
# pythonRelaxDepsHook does not work when this packages version is set to unstable-YYYY-MM-DD
sed -i setup.py -e 's/"\([^=]*\)==[^"]*"/"\1"/g'
'';
propagatedBuildInputs = [
@ -67,12 +64,9 @@ buildPythonPackage rec {
unidecode
];
nativeBuildInputs = [
pythonRelaxDepsHook
setuptools-scm
];
pythonRelaxDeps = true;
SETUPTOOLS_SCM_PRETEND_VERSION = version;
doCheck = false;