depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-describe/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

37 lines
743 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
# build
pytest,
# tests
pytestCheckHook,
}:
let
pname = "pytest-describe";
version = "2.2.0";
in
buildPythonPackage {
inherit pname version;
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-ObsF65DySX2co0Lvmgt/pbraflhQWuwz9m1mHWMZVbc=";
};
buildInputs = [ pytest ];
nativeCheckInputs = [ 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 ];
};
}