python3Packages.pytest-describe: init at 2.0.1
This commit is contained in:
parent
c58a108aaa
commit
4df594601b
40
pkgs/development/python-modules/pytest-describe/default.nix
Normal file
40
pkgs/development/python-modules/pytest-describe/default.nix
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
|
||||||
|
# build
|
||||||
|
, pytest
|
||||||
|
|
||||||
|
# tests
|
||||||
|
, pytestCheckHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
pname = "pytest-describe";
|
||||||
|
version = "2.0.1";
|
||||||
|
in
|
||||||
|
buildPythonPackage {
|
||||||
|
inherit pname version;
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
hash = "sha256-5cuqMRafAGA0itXKAZECfl8fQfPyf97vIINl4JxV65o=";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
pytest
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Describe-style plugin for the pytest framework";
|
||||||
|
homepage = "https://github.com/pytest-dev/pytest-describe";
|
||||||
|
changelog = "https://github.com/pytest-dev/pytest-describe/releases/tag/${version}";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ hexa ];
|
||||||
|
};
|
||||||
|
}
|
@ -7938,6 +7938,8 @@ in {
|
|||||||
|
|
||||||
pytest-dependency = callPackage ../development/python-modules/pytest-dependency { };
|
pytest-dependency = callPackage ../development/python-modules/pytest-dependency { };
|
||||||
|
|
||||||
|
pytest-describe = callPackage ../development/python-modules/pytest-describe { };
|
||||||
|
|
||||||
pytest-django = callPackage ../development/python-modules/pytest-django { };
|
pytest-django = callPackage ../development/python-modules/pytest-django { };
|
||||||
|
|
||||||
pytest-doctestplus = callPackage ../development/python-modules/pytest-doctestplus { };
|
pytest-doctestplus = callPackage ../development/python-modules/pytest-doctestplus { };
|
||||||
|
Loading…
Reference in New Issue
Block a user