python3Packages.pytest-describe: init at 2.0.1

main
Martin Weinelt 2 years ago
parent c58a108aaa
commit 4df594601b
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
  1. 40
      pkgs/development/python-modules/pytest-describe/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -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-describe = callPackage ../development/python-modules/pytest-describe { };
pytest-django = callPackage ../development/python-modules/pytest-django { };
pytest-doctestplus = callPackage ../development/python-modules/pytest-doctestplus { };

Loading…
Cancel
Save