mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
pythonPackages.ecpy: init at 0.8.1
This commit is contained in:
parent
7b4acc6626
commit
9e61a82ab3
22
pkgs/development/python-modules/ecpy/default.nix
Normal file
22
pkgs/development/python-modules/ecpy/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ stdenv, fetchPypi, buildPythonPackage, hidapi
|
||||
, pycrypto, pillow, protobuf, future, ecpy
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "ECPy";
|
||||
version = "0.8.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0ab60sx4bbsmccwmdvz1023r0cbzi4phar4ipzn5npdj5gw1ny4l";
|
||||
};
|
||||
|
||||
buildInputs = [ hidapi pycrypto pillow protobuf future ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Pure Pyhton Elliptic Curve Library";
|
||||
homepage = "https://github.com/ubinity/ECPy";
|
||||
license = licenses.asl20;
|
||||
};
|
||||
}
|
|
@ -29632,6 +29632,8 @@ EOF
|
|||
|
||||
mnemonic = callPackage ../development/python-modules/mnemonic.nix { };
|
||||
|
||||
ecpy = callPackage ../development/python-modules/ecpy { };
|
||||
|
||||
trezor = callPackage ../development/python-modules/trezor.nix { };
|
||||
|
||||
keepkey = buildPythonPackage rec{
|
||||
|
|
Loading…
Reference in a new issue