summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorIvv <41924494+IvarWithoutBones@users.noreply.github.com>2022-01-24 18:11:33 +0100
committerGitHub <noreply@github.com>2022-01-24 18:11:33 +0100
commitb68f34c3395576cd7565a12ecbf9a84e52332298 (patch)
tree25f26370c43c8db11ad98e449bdb057bde4217d6 /pkgs
parent641a189dd9cc226a41120c75330b2b3ac83168dc (diff)
parent60638a2dc5f7f8d2b3925af8ba5772a181094612 (diff)
downloadnixpkgs-b68f34c3395576cd7565a12ecbf9a84e52332298.tar
nixpkgs-b68f34c3395576cd7565a12ecbf9a84e52332298.tar.gz
nixpkgs-b68f34c3395576cd7565a12ecbf9a84e52332298.tar.bz2
nixpkgs-b68f34c3395576cd7565a12ecbf9a84e52332298.tar.lz
nixpkgs-b68f34c3395576cd7565a12ecbf9a84e52332298.tar.xz
nixpkgs-b68f34c3395576cd7565a12ecbf9a84e52332298.tar.zst
nixpkgs-b68f34c3395576cd7565a12ecbf9a84e52332298.zip
Merge pull request #156497 from Groestlcoin/groestlcoin-hash
groestlcoin_hash: init at 1.0.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/groestlcoin_hash/default.nix26
-rw-r--r--pkgs/top-level/python-packages.nix2
2 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/groestlcoin_hash/default.nix b/pkgs/development/python-modules/groestlcoin_hash/default.nix
new file mode 100644
index 00000000000..8bad39da293
--- /dev/null
+++ b/pkgs/development/python-modules/groestlcoin_hash/default.nix
@@ -0,0 +1,26 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "groestlcoin_hash";
+  version = "1.0.1";
+  format = "setuptools";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "sha256-Nkco8ZA0rJaT9Mx4NIcptMvzd4h0BsRn2+gomdesirg=";
+  };
+
+  pythonImportsCheck = [
+    "groestlcoin_hash"
+  ];
+
+  meta = with lib; {
+    description = "Bindings for groestl key derivation function library used in Groestlcoin";
+    homepage = "https://pypi.org/project/groestlcoin_hash/";
+    maintainers = with maintainers; [ gruve-p ];
+    license = licenses.unfree;
+  };
+}
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 01d4f3432af..023c45639de 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -3510,6 +3510,8 @@ in {
 
   grip = callPackage ../development/python-modules/grip { };
 
+  groestlcoin_hash = callPackage ../development/python-modules/groestlcoin_hash { };
+
   grpc-google-iam-v1 = callPackage ../development/python-modules/grpc-google-iam-v1 { };
 
   grpcio = callPackage ../development/python-modules/grpcio { };