Commit 07c0b50b authored by Sigmanificient's avatar Sigmanificient
Browse files

python312Packages.pyrfc3339: drop nose dependency

parent 0ad7ed48
Loading
Loading
Loading
Loading
+1 −7
Original line number Diff line number Diff line
@@ -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";