python3Packages.scramp: 1.2.0 -> 1.2.2

This commit is contained in:
Fabian Affolter
2021-03-06 23:35:21 +01:00
parent bc23341c8b
commit 41d3640e00
@@ -1,16 +1,23 @@
{ lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook }: { lib
, asn1crypto
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "scramp"; pname = "scramp";
version = "1.2.0"; version = "1.2.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "tlocke"; owner = "tlocke";
repo = "scramp"; repo = "scramp";
rev = version; rev = version;
sha256 = "15jb7z5l2lijxr60fb9v55i3f81h6d83c0b7fv5q0fv5q259nv0a"; sha256 = "sha256-d/kfrhvU96eH8TQX7n1hVRclEFWLseEvOxiR6VaOdrg=";
}; };
propagatedBuildInputs = [ asn1crypto ];
checkInputs = [ pytestCheckHook ]; checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "scramp" ]; pythonImportsCheck = [ "scramp" ];