python310Packages.fe25519: 1.2.0 -> 1.3.0

This commit is contained in:
Fabian Affolter 2022-08-08 22:27:04 +02:00
parent 6ce9c9ad4d
commit 49e5fbba0b

View File

@ -4,21 +4,20 @@
, fetchPypi
, fountains
, parts
, nose
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "fe25519";
version = "1.2.0";
format = "setuptools";
version = "1.3.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-Hzdt8932WonJAaQPtL346JFPqxFXkNW4XQvbQlSoJJE=";
hash = "sha256-/grXAiWERDeTCWgFnNC1Ok8D5I9MBlwd1501TW0yK5c=";
};
propagatedBuildInputs = [
@ -28,13 +27,12 @@ buildPythonPackage rec {
];
checkInputs = [
nose
pytestCheckHook
];
postPatch = ''
substituteInPlace setup.cfg \
--replace " --cov=fe25519 --cov-report term-missing" ""
substituteInPlace pyproject.toml \
--replace "--doctest-modules --ignore=docs --cov=fe25519 --cov-report term-missing" ""
'';
pythonImportsCheck = [