Merge pull request #287416 from fabaff/findimports-bump

python311Packages.findimports: 2.3.0 -> 2.4.0
This commit is contained in:
Fabian Affolter 2024-02-09 10:29:00 +01:00 committed by GitHub
commit d6472c550e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,22 +3,27 @@
, fetchFromGitHub
, python
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "findimports";
version = "2.3.0";
format = "setuptools";
version = "2.4.0";
pyproject = true;
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "mgedmin";
repo = pname;
repo = "findimports";
rev = "refs/tags/${version}";
hash = "sha256-yA1foeGhgOXZArc/nZfS1tbGyONXJZ9lW+Zcx7hCedM=";
hash = "sha256-ar05DYSc/raYC1RJyLCxDYnd7Zjx20aczywlb6wc67Y=";
};
nativeBuildInputs = [
setuptools
];
pythonImportsCheck = [
"findimports"
];