Merge pull request #294656 from r-ryantm/auto-update/python311Packages.types-decorator

python311Packages.types-decorator: 5.1.8.20240106 -> 5.1.8.20240310
This commit is contained in:
Nick Cao 2024-03-10 10:37:40 -04:00 committed by GitHub
commit 7c6991db60
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,18 +1,23 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
}:
buildPythonPackage rec {
pname = "types-decorator";
version = "5.1.8.20240106";
format = "setuptools";
version = "5.1.8.20240310";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Mv+SszYVBg0judN2ASS9s1BsSqjZ61CWPPGjwguey78=";
hash = "sha256-UuMWsDeDiGqKKr3CKPcHFoC6ZYlFRc0ghevjz4hoSg4=";
};
nativeBuildInputs = [
setuptools
];
# Modules doesn't have tests
doCheck = false;