pythonPackages.ltc_scrypt: init at 1.0
library needed by the electrum-ltc lightweight litecoin wallet
This commit is contained in:
parent
ea929311bb
commit
756695c3fa
22
pkgs/development/python-modules/ltc_scrypt/default.nix
Normal file
22
pkgs/development/python-modules/ltc_scrypt/default.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "ltc_scrypt";
|
||||||
|
version = "1.0";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1h90hh3iw4i7zs7jgskdjlk8gi97b3v2zqsxdfwdvhrrnhpvv856";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Bindings for scrypt proof of work used by Litecoin";
|
||||||
|
homepage = https://pypi.python.org/pypi/ltc_scrypt;
|
||||||
|
maintainers = with maintainers; [ asymmetric ];
|
||||||
|
license = licenses.bsd2;
|
||||||
|
};
|
||||||
|
}
|
@ -13940,6 +13940,8 @@ in {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
ltc_scrypt = callPackage ../development/python-modules/ltc_scrypt/default.nix { };
|
||||||
|
|
||||||
python_magic = buildPythonPackage rec {
|
python_magic = buildPythonPackage rec {
|
||||||
name = "python-magic-0.4.10";
|
name = "python-magic-0.4.10";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user