pythonPackages.allure-python-commons: init at 2.9.45

main
Evan Stoll 3 years ago
parent 449564ccce
commit 5a13ad11ee
  1. 43
      pkgs/development/python-modules/allure-python-commons/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -0,0 +1,43 @@
{ lib
, fetchPypi
, buildPythonPackage
, pythonOlder
, attrs
, pluggy
, six
, allure-python-commons-test
, setuptools-scm
, python
}:
buildPythonPackage rec {
pname = "allure-python-commons";
version = "2.9.45";
disabled = pythonOlder "3.4";
src = fetchPypi {
inherit pname version;
sha256 = "17alymsivw8fs89j6phbqgrbprasw8kj72kxa5y8qpn3xa5d4f62";
};
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [ attrs pluggy six allure-python-commons-test ];
checkPhase = ''
${python.interpreter} -m doctest ./src/utils.py
${python.interpreter} -m doctest ./src/mapping.py
'';
pythonImportsCheck = [ "allure" "allure_commons" ];
meta = with lib; {
description = "Common engine for all modules. It is useful for make integration with your homemade frameworks";
homepage = "https://github.com/allure-framework/allure-python";
license = licenses.asl20;
maintainers = with maintainers; [ evanjs ];
};
}

@ -431,6 +431,8 @@ in {
allpairspy = callPackage ../development/python-modules/allpairspy { };
allure-python-commons = callPackage ../development/python-modules/allure-python-commons { };
allure-python-commons-test = callPackage ../development/python-modules/allure-python-commons-test { };
alot = callPackage ../development/python-modules/alot { };

Loading…
Cancel
Save