python312Packages.scramp: 1.4.4 -> 1.4.5

https://github.com/tlocke/scramp/compare/1.4.4...1.4.5
This commit is contained in:
Martin Weinelt
2024-06-24 12:18:24 +02:00
parent 74f29cd4b6
commit 50ff40930d
@@ -3,18 +3,17 @@
asn1crypto,
buildPythonPackage,
fetchFromGitHub,
importlib-metadata,
hatchling,
pytest-mock,
pytestCheckHook,
pythonOlder,
setuptools,
wheel,
versioningit,
}:
buildPythonPackage rec {
pname = "scramp";
version = "1.4.4";
format = "pyproject";
version = "1.4.5";
pyproject = true;
disabled = pythonOlder "3.7";
@@ -22,15 +21,15 @@ buildPythonPackage rec {
owner = "tlocke";
repo = "scramp";
rev = version;
hash = "sha256-WOyv1fLSXG7p+WKs2QSwlsh8FSK/lxp6I1hPY0VIkKo=";
hash = "sha256-KpododRJ+CYRGBR7Sr5cVBhJvUwh9YmPERd/DAJqEcY=";
};
nativeBuildInputs = [
setuptools
wheel
build-system = [
hatchling
versioningit
];
propagatedBuildInputs = [ asn1crypto ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
dependencies = [ asn1crypto ];
nativeCheckInputs = [
pytest-mock