mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 06:06:32 +01:00
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
41 lines
1,008 B
Nix
41 lines
1,008 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
classify-imports,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "reorder-python-imports";
|
|
version = "3.16.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "asottile";
|
|
repo = "reorder_python_imports";
|
|
tag = "v${version}";
|
|
hash = "sha256-fncrrmksYS+8pz9qVucf4ktxxVvnrKEzIeM5kPrh0PQ=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ classify-imports ];
|
|
|
|
pythonImportsCheck = [ "reorder_python_imports" ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
# prints an explanation about PYTHONPATH first
|
|
# and therefore fails the assertion
|
|
disabledTests = [ "test_success_messages_are_printed_on_stderr" ];
|
|
|
|
meta = {
|
|
description = "Tool for automatically reordering python imports";
|
|
homepage = "https://github.com/asottile/reorder_python_imports";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ gador ];
|
|
mainProgram = "reorder-python-imports";
|
|
};
|
|
}
|