mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-08 01:53:13 -05:00
python3Packages: format with nixfmt
This commit is contained in:
parent
691216eca3
commit
59b1aef590
6796 changed files with 98055 additions and 98842 deletions
|
|
@ -1,13 +1,14 @@
|
|||
{ lib
|
||||
, fetchPypi
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, attrs
|
||||
, pluggy
|
||||
, six
|
||||
, allure-python-commons-test
|
||||
, setuptools-scm
|
||||
, python
|
||||
{
|
||||
lib,
|
||||
fetchPypi,
|
||||
buildPythonPackage,
|
||||
pythonOlder,
|
||||
attrs,
|
||||
pluggy,
|
||||
six,
|
||||
allure-python-commons-test,
|
||||
setuptools-scm,
|
||||
python,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
|
@ -22,18 +23,24 @@ buildPythonPackage rec {
|
|||
hash = "sha256-ojLnlVgR+Yjkmkwd1sFszn6bgdDqBCKx5WVNMlTiyvM=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools-scm
|
||||
];
|
||||
nativeBuildInputs = [ setuptools-scm ];
|
||||
|
||||
propagatedBuildInputs = [ attrs pluggy six allure-python-commons-test ];
|
||||
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" ];
|
||||
pythonImportsCheck = [
|
||||
"allure"
|
||||
"allure_commons"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Common engine for all modules. It is useful for make integration with your homemade frameworks";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue