Merge pull request #330496 from Sigmanificient/pyrfc3339

python312Packages.pyrfc3339: drop nose dependency
This commit is contained in:
Emily
2024-07-27 21:21:38 +01:00
committed by GitHub
@@ -2,16 +2,12 @@
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
# build-system
setuptools,
# dependencies
pytz,
# tests
nose,
}:
buildPythonPackage rec {
@@ -29,9 +25,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ pytz ];
doCheck = pythonOlder "3.12";
nativeCheckInputs = [ nose ];
doCheck = false; # tests are not including in PyPI tarball
meta = with lib; {
description = "Generate and parse RFC 3339 timestamps";