Unverified Commit 68e8a1b9 authored by Emily's avatar Emily Committed by GitHub
Browse files

Merge pull request #330496 from Sigmanificient/pyrfc3339

python312Packages.pyrfc3339: drop nose dependency
parents e5c56b29 07c0b50b
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";