pythonPackages.pytest-freezegun: run tests

This commit is contained in:
Robert Schütz 2021-01-22 13:23:18 +01:00
parent 54fb7a5800
commit 090664f85c

View file

@ -1,18 +1,21 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, fetchFromGitHub
, freezegun
, pytest
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pytest-freezegun";
version = "0.4.2";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "19c82d5633751bf3ec92caa481fb5cffaac1787bd485f0df6436fd6242176949";
src = fetchFromGitHub {
owner = "ktosiek";
repo = "pytest-freezegun";
rev = version;
sha256 = "10c4pbh03b4s1q8cjd75lr0fvyf9id0zmdk29566qqsmaz28npas";
};
propagatedBuildInputs = [
@ -20,6 +23,10 @@ buildPythonPackage rec {
pytest
];
checkInputs = [
pytestCheckHook
];
meta = with lib; {
description = "Wrap tests with fixtures in freeze_time";
homepage = "https://github.com/ktosiek/pytest-freezegun";