1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00

pythonPackages.ecpy: init at 0.8.1

This commit is contained in:
rnhmjoj 2017-05-30 20:02:07 +02:00
parent b2a8b7df59
commit 0db8285689
No known key found for this signature in database
GPG key ID: 362BB82B7E496B7C

View file

@ -29765,6 +29765,26 @@ EOF
};
};
ecpy = buildPythonPackage rec {
name = "ECPy-${version}";
version = "0.8.1";
src = pkgs.fetchurl {
url = "mirror://pypi/e/ecpy/${name}.tar.gz";
sha256 = "0ab60sx4bbsmccwmdvz1023r0cbzi4phar4ipzn5npdj5gw1ny4l";
};
buildInputs = with self; [
hidapi pycrypto pillow protobuf future
];
meta = {
description = "Pure Pyhton Elliptic Curve Library";
homepage = "https://github.com/ubinity/ECPy";
license = licenses.apache;
};
};
x11_hash = buildPythonPackage rec{
version = "1.4";
name = "x11_hash-${version}";