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:
committed by
Valentin Gagarin
co-authored by
Jan Tojnar
Taeer Bar-Yam
parent
dc1bc652b0
commit
4cb15fc024
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user