python312Packages.dash-renderer: remove (#369714)
[NixPkgs.git] / pkgs / development / python-modules / fe25519 / default.nix
bloba19efc6be1c69add39470cdd60dee45299ccb608
2   lib,
3   bitlist,
4   buildPythonPackage,
5   fetchPypi,
6   fountains,
7   parts,
8   pytest-cov-stub,
9   pytestCheckHook,
10   pythonOlder,
11   setuptools,
14 buildPythonPackage rec {
15   pname = "fe25519";
16   version = "1.5.0";
17   pyproject = true;
19   disabled = pythonOlder "3.7";
21   src = fetchPypi {
22     inherit pname version;
23     hash = "sha256-la+17tPHjceMTe7Wk8DGVaSptk8XJa+l7GTeqLIFDvs=";
24   };
26   build-system = [ setuptools ];
28   dependencies = [
29     bitlist
30     fountains
31     parts
32   ];
34   nativeCheckInputs = [
35     pytest-cov-stub
36     pytestCheckHook
37   ];
39   pythonImportsCheck = [ "fe25519" ];
41   meta = with lib; {
42     description = "Python field operations for Curve25519's prime";
43     homepage = "https://github.com/BjoernMHaase/fe25519";
44     license = with licenses; [ cc0 ];
45     maintainers = with maintainers; [ fab ];
46   };