python312Packages.types-dateutil: refactor

This commit is contained in:
Fabian Affolter 2024-03-17 08:39:50 +01:00 committed by GitHub
parent 06c4378990
commit f4400e005b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 1 deletions

View File

@ -1,12 +1,13 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
}:
buildPythonPackage rec {
pname = "types-dateutil";
version = "2.9.0.20240316";
format = "setuptools";
pyproject = true;
src = fetchPypi {
pname = "types-python-dateutil";
@ -14,6 +15,10 @@ buildPythonPackage rec {
hash = "sha256-XS8uJAuGkF5AlE3Xh9ttqSY/Deq+8Qdt2u15c1HsAgI=";
};
nativeBuildInputs = [
setuptools
];
pythonImportsCheck = [
"dateutil-stubs"
];