portfolio: 0.71.2 -> 0.72.2 (#360387)
[NixPkgs.git] / pkgs / development / python-modules / siphashc / default.nix
blob5b8b11142d3399f3aff6fd67b6cbcca95964fa8d
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5   setuptools,
6   pytestCheckHook,
7 }:
9 buildPythonPackage rec {
10   pname = "siphashc";
11   version = "2.5";
12   pyproject = true;
13   build-system = [ setuptools ];
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "sha256-o7zGnOM96+C0I98iSYzua2MB8TP1okdw/m9O9I2DK00=";
18   };
20   nativeCheckInputs = [ pytestCheckHook ];
22   pythonImportsCheck = [ "siphashc" ];
24   meta = with lib; {
25     description = "Python c-module for siphash";
26     homepage = "https://github.com/WeblateOrg/siphashc";
27     changelog = "https://github.com/WeblateOrg/siphashc/blob/${version}/CHANGES.rst";
28     license = licenses.isc;
29     maintainers = with maintainers; [ erictapen ];
30   };