33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
55 lines
999 B
Nix
55 lines
999 B
Nix
{ lib
|
|
, bitlist
|
|
, buildPythonPackage
|
|
, fe25519
|
|
, fetchPypi
|
|
, fountains
|
|
, parts
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ge25519";
|
|
version = "1.3.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-y9Nv59pLWk1kRjZG3EmalT34Mjx7RLZ4WkvJlRrK5LI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
fe25519
|
|
parts
|
|
bitlist
|
|
fountains
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace "--doctest-modules --ignore=docs --cov=ge25519 --cov-report term-missing" ""
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"ge25519"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python implementation of Ed25519 group elements and operations";
|
|
homepage = "https://github.com/nthparty/ge25519";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|