about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/cucumber-tag-expressions/default.nix
blob: e67704be7898a525c07c834af7c30747c19ff794 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib
, fetchPypi
, buildPythonPackage
, py
, pytestCheckHook
, pytest-html
 }:

buildPythonPackage rec {
  pname = "cucumber-tag-expressions";
  version = "4.1.0";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "e314d5fed6eebb2f90380271f562248fb15e18636764faf40f4dde4b28b1f960";
  };

  nativeCheckInputs = [
    py
    pytestCheckHook
    pytest-html
  ];

  meta = with lib; {
    homepage = "https://github.com/cucumber/tag-expressions";
    description = "Provides tag-expression parser for cucumber/behave";
    license = licenses.mit;
    maintainers = with maintainers; [ maxxk ];
  };
}