nixpkgs/pkgs/development/python-modules/ecpy/default.nix

24 lines
549 B
Nix
Raw Normal View History

{ stdenv, fetchPypi, buildPythonPackage, isPy3k, hidapi
, pycrypto, pillow, protobuf, future
2017-05-31 22:23:21 +02:00
}:
buildPythonPackage rec {
pname = "ECPy";
2018-04-04 20:07:45 +02:00
version = "0.9.0";
2017-05-31 22:23:21 +02:00
disabled = !isPy3k;
2017-05-31 22:23:21 +02:00
src = fetchPypi {
inherit pname version;
2018-04-04 20:07:45 +02:00
sha256 = "ef41346ae24789699f3bc3ddefbfac03ad6b73b7d3d19b998ba9ce47b67c7277";
2017-05-31 22:23:21 +02: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 22:23:21 +02:00
license = licenses.asl20;
};
}