Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pytest-describe / default.nix
blobc1118327734c87aa1d78d5f617c7d978246389f0
1 { lib
2 , buildPythonPackage
3 , fetchPypi
5 # build
6 , pytest
8 # tests
9 , pytestCheckHook
12 let
13   pname = "pytest-describe";
14   version = "2.2.0";
16 buildPythonPackage {
17   inherit pname version;
18   format = "setuptools";
20   src = fetchPypi {
21     inherit pname version;
22     hash = "sha256-ObsF65DySX2co0Lvmgt/pbraflhQWuwz9m1mHWMZVbc=";
23   };
25   buildInputs = [
26     pytest
27   ];
29   nativeCheckInputs = [
30     pytestCheckHook
31   ];
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   };