python.pkgs.ecpy: 0.9.0 -> 0.9.1
This commit is contained in:
parent
2c4a75e9ef
commit
2b5659dc04
@ -1,21 +1,20 @@
|
|||||||
{ stdenv, fetchPypi, buildPythonPackage, isPy3k, hidapi
|
{ lib, fetchPypi, buildPythonPackage, isPy3k, future }:
|
||||||
, pycrypto, pillow, protobuf, future
|
|
||||||
}:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "ECPy";
|
pname = "ECPy";
|
||||||
version = "0.9.0";
|
version = "0.9.1";
|
||||||
|
|
||||||
disabled = !isPy3k;
|
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "ef41346ae24789699f3bc3ddefbfac03ad6b73b7d3d19b998ba9ce47b67c7277";
|
sha256 = "f0df66be67f3de0152dfb3c453f4247bdfa2b4e37aa75b98617a637376032229";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ hidapi pycrypto pillow protobuf future ];
|
propagatedBuildInputs = lib.optional (!isPy3k) future;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
# No tests implemented
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
description = "Pure Pyhton Elliptic Curve Library";
|
description = "Pure Pyhton Elliptic Curve Library";
|
||||||
homepage = https://github.com/ubinity/ECPy;
|
homepage = https://github.com/ubinity/ECPy;
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
Loading…
Reference in New Issue
Block a user