Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / groestlcoin-hash / default.nix
blobe5dc1f045eaaba6cfe9177fa4cebc966d0de780f
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     pname = "groestlcoin_hash";
13     inherit version;
14     sha256 = "31a8f6fa4c19db5258c3c73c071b71702102c815ba862b6015d9e4b75ece231e";
15   };
17   pythonImportsCheck = [
18     "groestlcoin_hash"
19   ];
21   meta = with lib; {
22     description = "Bindings for groestl key derivation function library used in Groestlcoin";
23     homepage = "https://pypi.org/project/groestlcoin_hash/";
24     maintainers = with maintainers; [ gruve-p ];
25     license = licenses.mit;
26   };