pythonPackages.pytest-watch: init at 4.2.0
Co-Authored-By: worldofpeace <worldofpeace@protonmail.ch>
This commit is contained in:
parent
73d0b53ff2
commit
d72887e0d2
31
pkgs/development/python-modules/pytest-watch/default.nix
Normal file
31
pkgs/development/python-modules/pytest-watch/default.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, docopt
|
||||||
|
, colorama
|
||||||
|
, pytest
|
||||||
|
, watchdog
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pytest-watch";
|
||||||
|
version = "4.2.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "06136f03d5b361718b8d0d234042f7b2f203910d8568f63df2f866b547b3d4b9";
|
||||||
|
};
|
||||||
|
|
||||||
|
# No Tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ pytest colorama docopt watchdog ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/joeyespo/pytest-watch";
|
||||||
|
description = "Local continuous test runner with pytest and watchdog";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ dmvianna ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -1745,6 +1745,8 @@ in {
|
|||||||
|
|
||||||
pytest-warnings = callPackage ../development/python-modules/pytest-warnings { };
|
pytest-warnings = callPackage ../development/python-modules/pytest-warnings { };
|
||||||
|
|
||||||
|
pytest-watch = callPackage ../development/python-modules/pytest-watch { };
|
||||||
|
|
||||||
pytestpep8 = callPackage ../development/python-modules/pytest-pep8 { };
|
pytestpep8 = callPackage ../development/python-modules/pytest-pep8 { };
|
||||||
|
|
||||||
pytest-pep257 = callPackage ../development/python-modules/pytest-pep257 { };
|
pytest-pep257 = callPackage ../development/python-modules/pytest-pep257 { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user