python310Packages.pkutils: remove semver constraint

This commit is contained in:
Fabian Affolter 2023-05-04 09:47:45 +02:00
parent f1db23835d
commit 2d8ce3358e

View File

@ -3,6 +3,7 @@
, fetchFromGitHub
, nose
, pythonOlder
, pythonRelaxDepsHook
, semver
}:
@ -16,10 +17,18 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "reubano";
repo = "pkutils";
rev = "v${version}";
rev = "refs/tags/v${version}";
hash = "sha256-AK+xX+LPz6IVLZedsqMUm7G28ue0s3pXgIzxS4EHHLE=";
};
pythonRelaxDeps = [
"semver"
];
nativeBuildInputs = [
pythonRelaxDepsHook
];
propagatedBuildInputs = [
semver
];