biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / siphashc / default.nix
blob639f06ead5f1ed340a34cda9a1b987ac83ee42d8
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5   setuptools,
6   pytestCheckHook,
7 }:
9 buildPythonPackage rec {
10   pname = "siphashc";
11   version = "2.4.1";
12   pyproject = true;
13   build-system = [ setuptools ];
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "sha256-ptNpy7VkUXHbjvdir6v+eYOmtQ/j8XPXq4lj7ceS/5s=";
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   };