python3Packages.scramp: 1.2.0 -> 1.2.2

This commit is contained in:
Fabian Affolter 2021-03-06 23:14:12 +01:00
parent bc23341c8b
commit 41d3640e00

View File

@ -1,16 +1,23 @@
{ lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook }:
{ lib
, asn1crypto
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "scramp";
version = "1.2.0";
version = "1.2.2";
src = fetchFromGitHub {
owner = "tlocke";
repo = "scramp";
rev = version;
sha256 = "15jb7z5l2lijxr60fb9v55i3f81h6d83c0b7fv5q0fv5q259nv0a";
sha256 = "sha256-d/kfrhvU96eH8TQX7n1hVRclEFWLseEvOxiR6VaOdrg=";
};
propagatedBuildInputs = [ asn1crypto ];
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "scramp" ];