nixpkgs/pkgs/development/python-modules/freezegun/default.nix

30 lines
568 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, dateutil
, six
, mock
, nose
2019-06-09 11:25:38 +01:00
, pytest
}:
buildPythonPackage rec {
pname = "freezegun";
version = "0.3.15";
src = fetchPypi {
inherit pname version;
sha256 = "e2062f2c7f95cc276a834c22f1a17179467176b624cc6f936e8bc3be5535ad1b";
};
propagatedBuildInputs = [ dateutil six ];
2019-06-09 11:25:38 +01:00
checkInputs = [ mock nose pytest ];
meta = with stdenv.lib; {
description = "FreezeGun: Let your Python tests travel through time";
homepage = "https://github.com/spulec/freezegun";
license = licenses.asl20;
};
}