python311Packages.types-python-dateutil: refactor

This commit is contained in:
Fabian Affolter 2024-01-08 09:12:21 +01:00
parent cc7d2b16f2
commit e41da76b80

View File

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