hoarder: 0.21.0 -> 0.22.0
[NixPkgs.git] / pkgs / development / python-modules / allure-pytest / default.nix
blob88fc7054f1e61e9c88efa5b615e8dc2031769253
2   lib,
3   allure-python-commons,
4   buildPythonPackage,
5   fetchPypi,
6   pytest,
7   pythonOlder,
8   setuptools-scm,
9 }:
11 buildPythonPackage rec {
12   pname = "allure-pytest";
13   version = "2.13.5";
14   pyproject = true;
16   disabled = pythonOlder "3.7";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-DvjheQxEqYjba4PE1PXpFFHixMjqEGAd+ohSjSOvz24=";
21   };
23   nativeBuildInputs = [ setuptools-scm ];
25   buildInputs = [ pytest ];
27   propagatedBuildInputs = [ allure-python-commons ];
29   # Tests were moved to the meta package
30   doCheck = false;
32   pythonImportsCheck = [ "allure_pytest" ];
34   meta = with lib; {
35     description = "Allure integrations for Python test frameworks";
36     homepage = "https://github.com/allure-framework/allure-python";
37     license = licenses.asl20;
38     maintainers = with maintainers; [ evanjs ];
39   };