python2Packages.freezegun: remove

This commit is contained in:
Robert Schütz 2022-06-06 18:32:39 +00:00
parent 2a54a83573
commit a9aba22cdc
2 changed files with 0 additions and 31 deletions

View File

@ -1,29 +0,0 @@
{ lib
, buildPythonPackage
, fetchPypi
, python-dateutil
, six
, mock
, nose
, pytest
}:
buildPythonPackage rec {
pname = "freezegun";
version = "0.3.15";
src = fetchPypi {
inherit pname version;
sha256 = "e2062f2c7f95cc276a834c22f1a17179467176b624cc6f936e8bc3be5535ad1b";
};
propagatedBuildInputs = [ python-dateutil six ];
checkInputs = [ mock nose pytest ];
meta = with lib; {
description = "FreezeGun: Let your Python tests travel through time";
homepage = "https://github.com/spulec/freezegun";
license = licenses.asl20;
};
}

View File

@ -30,8 +30,6 @@ with self; with super; {
filelock = callPackage ../development/python2-modules/filelock { };
freezegun = callPackage ../development/python2-modules/freezegun { };
futures = callPackage ../development/python2-modules/futures { };
google-apputils = callPackage ../development/python2-modules/google-apputils { };