forked from mirrors/nixpkgs
pythonPackages.allure-python-commons-test: init at 2.9.45
This commit is contained in:
parent
e727217620
commit
449564ccce
|
@ -0,0 +1,45 @@
|
|||
{ lib
|
||||
, fetchPypi
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, attrs
|
||||
, pluggy
|
||||
, six
|
||||
, pyhamcrest
|
||||
, setuptools-scm
|
||||
, python
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "allure-python-commons-test";
|
||||
version = "2.9.45";
|
||||
|
||||
disabled = pythonOlder "3.4";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0rn8ccxxrm27skv3avdiw56zc4fk2h7nrk3jamqmx6fnvmshiz5f";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ attrs pluggy six pyhamcrest ];
|
||||
|
||||
checkPhase = ''
|
||||
${python.interpreter} -m doctest ./src/container.py
|
||||
${python.interpreter} -m doctest ./src/report.py
|
||||
${python.interpreter} -m doctest ./src/label.py
|
||||
${python.interpreter} -m doctest ./src/result.py
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [ "allure_commons_test" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Just pack of hamcrest matchers for validation result in allure2 json format";
|
||||
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-test = callPackage ../development/python-modules/allure-python-commons-test { };
|
||||
|
||||
alot = callPackage ../development/python-modules/alot { };
|
||||
|
||||
alpha-vantage = callPackage ../development/python-modules/alpha-vantage { };
|
||||
|
|
Loading…
Reference in a new issue