pythonPackages.mnemonic: init at 0.12

This commit is contained in:
Nicolas Pouillard 2016-01-21 22:55:32 +01:00
parent 3339ab31e5
commit a9f45a9cae
No known key found for this signature in database
GPG Key ID: 10C40A56EADFABBA

View File

@ -24966,4 +24966,23 @@ in modules // {
maintainer = with maintainers; [ np ];
};
};
mnemonic = buildPythonPackage rec{
version = "0.12";
name = "mnemonic-${version}";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/m/mnemonic/${name}.tar.gz";
sha256 = "0j5jm4v54135qqw455fw4ix2mhxhzjqvxji9gqkpxagk31cvbnj4";
};
propagatedBuildInputs = with self; [ pbkdf2 ];
meta = {
description = "Implementation of Bitcoin BIP-0039";
homepage = https://github.com/trezor/python-mnemonic;
license = licenses.mit;
maintainer = with maintainers; [ np ];
};
};
}