Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / groestlcoin_hash / default.nix
blob477ff19e33ab7e77600a5e72a83e2afbe99406c8
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "groestlcoin_hash";
8   version = "1.0.3";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "31a8f6fa4c19db5258c3c73c071b71702102c815ba862b6015d9e4b75ece231e";
14   };
16   pythonImportsCheck = [
17     "groestlcoin_hash"
18   ];
20   meta = with lib; {
21     description = "Bindings for groestl key derivation function library used in Groestlcoin";
22     homepage = "https://pypi.org/project/groestlcoin_hash/";
23     maintainers = with maintainers; [ gruve-p ];
24     license = licenses.mit;
25   };