ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / fe25519 / default.nix
blob9e32640b8476b43a8c1e9eacba1d438506d51eb9
1 { lib
2 , bitlist
3 , buildPythonPackage
4 , fetchPypi
5 , fountains
6 , parts
7 , pytestCheckHook
8 , pythonOlder
9 , setuptools
12 buildPythonPackage rec {
13   pname = "fe25519";
14   version = "1.3.0";
15   format = "pyproject";
17   disabled = pythonOlder "3.7";
19   src = fetchPypi {
20     inherit pname version;
21     hash = "sha256-/grXAiWERDeTCWgFnNC1Ok8D5I9MBlwd1501TW0yK5c=";
22   };
24   nativeBuildInputs = [
25     setuptools
26   ];
28   propagatedBuildInputs = [
29     bitlist
30     fountains
31     parts
32   ];
34   checkInputs = [
35     pytestCheckHook
36   ];
38   postPatch = ''
39     substituteInPlace pyproject.toml \
40       --replace "--doctest-modules --ignore=docs --cov=fe25519 --cov-report term-missing" ""
41   '';
43   pythonImportsCheck = [
44     "fe25519"
45   ];
47   meta = with lib; {
48     description = "Python field operations for Curve25519's prime";
49     homepage = "https://github.com/BjoernMHaase/fe25519";
50     license = with licenses; [ cc0 ];
51     maintainers = with maintainers; [ fab ];
52   };