nixpkgs/pkgs/development/python-modules/pytest-isort/default.nix
Fabian Affolter 3328668d16
Merge pull request #211913 from fabaff/pytest-isort-fix
python310Packages.pytest-isort: 3.0.0 -> 3.1.0
2023-01-21 18:48:22 +01:00

56 lines
1.0 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, importlib-metadata
, isort
, poetry-core
, pytest
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "pytest-isort";
version = "3.1.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "stephrdev";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-1oCVIi0sXwac4AufScJJRsfvBwaBAwlMBRNqLcUXEh4=";
};
nativeBuildInputs = [
poetry-core
];
buildInputs = [
pytest
];
propagatedBuildInputs = [
isort
] ++ lib.optionals (pythonOlder "3.8") [
importlib-metadata
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"pytest_isort"
];
meta = with lib; {
description = "Pytest plugin to perform isort checks (import ordering)";
homepage = "https://github.com/moccu/pytest-isort/";
changelog = "https://github.com/stephrdev/pytest-isort/blob/${version}/CHANGELOG.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}