python3Packages.starkbank-ecdsa: init at 1.1.0
This commit is contained in:
parent
2ab13ca162
commit
cc4c7328ee
28
pkgs/development/python-modules/starkbank-ecdsa/default.nix
Normal file
28
pkgs/development/python-modules/starkbank-ecdsa/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pytestCheckHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "starkbank-ecdsa";
|
||||||
|
version = "1.1.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "starkbank";
|
||||||
|
repo = "ecdsa-python";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "03smk33zhmv1j1svgjnykak0jnw8yl0yv03i1gsasx71f33zmfwi";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
pytestFlagsArray = [ "-v tests/*.py" ];
|
||||||
|
pythonImportsCheck = [ "ellipticcurve" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python ECDSA library";
|
||||||
|
homepage = "https://github.com/starkbank/ecdsa-python";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -7365,6 +7365,8 @@ in {
|
|||||||
inherit (pkgs.darwin.apple_sdk.frameworks) ApplicationServices;
|
inherit (pkgs.darwin.apple_sdk.frameworks) ApplicationServices;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
starkbank-ecdsa = callPackage ../development/python-modules/starkbank-ecdsa { };
|
||||||
|
|
||||||
staticjinja = callPackage ../development/python-modules/staticjinja { };
|
staticjinja = callPackage ../development/python-modules/staticjinja { };
|
||||||
|
|
||||||
statistics = callPackage ../development/python-modules/statistics { };
|
statistics = callPackage ../development/python-modules/statistics { };
|
||||||
|
Loading…
Reference in New Issue
Block a user