python3Packages.pytest-describe: init at 2.0.1

+42
+40
pkgs/development/python-modules/pytest-describe/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + 5 + # build 6 + , pytest 7 + 8 + # tests 9 + , pytestCheckHook 10 + }: 11 + 12 + let 13 + pname = "pytest-describe"; 14 + version = "2.0.1"; 15 + in 16 + buildPythonPackage { 17 + inherit pname version; 18 + format = "setuptools"; 19 + 20 + src = fetchPypi { 21 + inherit pname version; 22 + hash = "sha256-5cuqMRafAGA0itXKAZECfl8fQfPyf97vIINl4JxV65o="; 23 + }; 24 + 25 + buildInputs = [ 26 + pytest 27 + ]; 28 + 29 + checkInputs = [ 30 + pytestCheckHook 31 + ]; 32 + 33 + meta = with lib; { 34 + description = "Describe-style plugin for the pytest framework"; 35 + homepage = "https://github.com/pytest-dev/pytest-describe"; 36 + changelog = "https://github.com/pytest-dev/pytest-describe/releases/tag/${version}"; 37 + license = licenses.mit; 38 + maintainers = with maintainers; [ hexa ]; 39 + }; 40 + }
+2
pkgs/top-level/python-packages.nix
··· 7938 7938 7939 7939 pytest-dependency = callPackage ../development/python-modules/pytest-dependency { }; 7940 7940 7941 + pytest-describe = callPackage ../development/python-modules/pytest-describe { }; 7942 + 7941 7943 pytest-django = callPackage ../development/python-modules/pytest-django { }; 7942 7944 7943 7945 pytest-doctestplus = callPackage ../development/python-modules/pytest-doctestplus { };