python3Packages.siphashc: init at 2.4.1

Co-authored-by: Jan Tojnar <jtojnar@gmail.com>
Co-authored-by: Taeer Bar-Yam <Radvendii@users.noreply.github.com>
This commit is contained in:
Kerstin Humm
2024-08-13 08:44:54 +02:00
committed by Valentin Gagarin
co-authored by Jan Tojnar Taeer Bar-Yam
parent dc1bc652b0
commit 4cb15fc024
2 changed files with 33 additions and 0 deletions
@@ -0,0 +1,31 @@
{
lib,
fetchPypi,
buildPythonPackage,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "siphashc";
version = "2.4.1";
pyproject = true;
build-system = [ setuptools ];
src = fetchPypi {
pname = "siphashc";
inherit version;
sha256 = "sha256-ptNpy7VkUXHbjvdir6v+eYOmtQ/j8XPXq4lj7ceS/5s=";
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "siphashc" ];
meta = with lib; {
description = "Python c-module for siphash";
homepage = "https://github.com/WeblateOrg/siphashc";
license = licenses.mit;
maintainers = with maintainers; [ erictapen ];
};
}
+2
View File
@@ -14417,6 +14417,8 @@ self: super: with self; {
sip = callPackage ../development/python-modules/sip { };
siphashc = callPackage ../development/python-modules/siphashc { };
sip4 = callPackage ../development/python-modules/sip/4.x.nix { };
sipyco = callPackage ../development/python-modules/sipyco { };