Merge pull request #256794 from pbsds/bump-frozendict-1695429466

python3Packages.frozendict: remove merged patch
This commit is contained in:
Nick Cao 2023-09-23 09:05:18 -04:00 committed by GitHub
commit 830963173a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,12 +20,6 @@ buildPythonPackage rec {
hash = "sha256-4a0DvZOzNJqpop7wi+FagUR+8oaekz4EDNIYdUaAWC8=";
};
postPatch = ''
# https://github.com/Marco-Sulla/python-frozendict/pull/69
substituteInPlace setup.py \
--replace 'if impl == "PyPy":' 'if impl == "PyPy" or not src_path.exists():'
'';
nativeCheckInputs = [
pytestCheckHook
];
@ -48,6 +42,6 @@ buildPythonPackage rec {
homepage = "https://github.com/Marco-Sulla/python-frozendict";
changelog = "https://github.com/Marco-Sulla/python-frozendict/releases/tag/v${version}";
license = licenses.lgpl3Only;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ pbsds ];
};
}