python3Packages.future: 0.18.3 -> 1.0.0

https://github.com/PythonCharmers/python-future/blob/v1.0.0/docs/whatsnew.rst
This commit is contained in:
Martin Weinelt 2024-03-08 02:40:15 +01:00
parent 09cefb43b7
commit c8149d9020

View File

@ -1,7 +1,6 @@
{ lib
, buildPythonPackage
, fetchPypi
, fetchpatch
# build-system
, setuptools
@ -9,25 +8,14 @@
buildPythonPackage rec {
pname = "future";
version = "0.18.3";
version = "1.0.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-NKF0Nu0elml6hvnePRWjsL4B2LyN6cHf/Vn7gjTtUwc=";
hash = "sha256-vSloMJMHhh7a4UWKT4pPNZjAO+Q7l1IQdq6/XZTAewU=";
};
patches = [
(fetchpatch {
url = "https://github.com/PythonCharmers/python-future/commit/1901c1c347bcad603e8404b64656994eb2cc0439.patch";
hash = "sha256-wUSWVs7+KTsTmEM4OkpViAjDGWqx5h0SLPIacMZCpWU=";
excludes = [
"build.sh"
"docs/whatsnew.rst"
];
})
];
nativeBuildInputs = [
setuptools
];