python3Packages.scramp: 1.4.0 -> 1.4.1

This commit is contained in:
Fabian Affolter 2021-08-30 18:57:03 +02:00
parent d874a52015
commit 15937fa4b5

View File

@ -2,23 +2,32 @@
, asn1crypto
, buildPythonPackage
, fetchFromGitHub
, pytest-mock
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "scramp";
version = "1.4.0";
version = "1.4.1";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "tlocke";
repo = "scramp";
rev = version;
sha256 = "sha256-aXuRIW/3qBzan8z3EzSSxqaZfa3WnPhlviNa2ugIjik=";
sha256 = "sha256-HEt2QxNHX9Oqx+o0++ZtS61SVHra3nLAqv7NbQWVV+E=";
};
propagatedBuildInputs = [ asn1crypto ];
propagatedBuildInputs = [
asn1crypto
];
checkInputs = [ pytestCheckHook ];
checkInputs = [
pytest-mock
pytestCheckHook
];
pythonImportsCheck = [ "scramp" ];