3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/ecpy/default.nix

24 lines
555 B
Nix
Raw Normal View History

{ stdenv, fetchPypi, buildPythonPackage, isPy3k, hidapi
2017-05-31 21:23:21 +01:00
, pycrypto, pillow, protobuf, future, ecpy
}:
buildPythonPackage rec {
pname = "ECPy";
2018-01-20 10:57:52 +00:00
version = "0.8.3";
2017-05-31 21:23:21 +01:00
disabled = !isPy3k;
2017-05-31 21:23:21 +01:00
src = fetchPypi {
inherit pname version;
2018-01-20 10:57:52 +00:00
sha256 = "ef3d95419d53368f52fb7d4b883b8df0dfc2dd19a76243422d24981c3e5f27bd";
2017-05-31 21:23:21 +01:00
};
buildInputs = [ hidapi pycrypto pillow protobuf future ];
meta = with stdenv.lib; {
description = "Pure Pyhton Elliptic Curve Library";
homepage = https://github.com/ubinity/ECPy;
2017-05-31 21:23:21 +01:00
license = licenses.asl20;
};
}