python3Packages.ge25519: 1.0.0 -> 1.1.0

This commit is contained in:
Fabian Affolter 2021-12-28 10:17:45 +01:00 committed by Jonathan Ringer
parent 85d6b673bd
commit 1e01453b30

View file

@ -11,12 +11,12 @@
buildPythonPackage rec {
pname = "ge25519";
version = "1.0.0";
version = "1.1.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-f7xvZ92zRO3GLSdfgEyhkWVwAFT2TvKHy6+iF+k43bI=";
sha256 = "sha256-0M9RF8tlEoLyduvY3RvltGAnsus3HF6FEy22b6w6aUs=";
};
propagatedBuildInputs = [
@ -31,12 +31,6 @@ buildPythonPackage rec {
pytestCheckHook
];
postPatch = ''
substituteInPlace setup.py \
--replace "bitlist~=0.5.1" "bitlist>=0.5.1" \
--replace "parts~=1.1.2" "parts>=1.1.2"
'';
pythonImportsCheck = [
"ge25519"
];