python3Packages.scantree: init at 0.0.4 (#451157)

This commit is contained in:
Sandro
2026-03-31 13:17:57 +00:00
committed by GitHub
2 changed files with 48 additions and 0 deletions
@@ -0,0 +1,46 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
versioneer,
attrs,
pathspec,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "scantree";
version = "0.0.4";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Fb1cskSDsE2yxwZTYE6Oo1IumAh9t+OKuEgvBTmEwKw=";
};
build-system = [
setuptools
versioneer
];
dependencies = [
attrs
pathspec
];
pythonImportsCheck = [
"scantree"
];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
description = "Flexible recursive directory iterator: scandir meets glob(\"**\", recursive=True)";
homepage = "https://github.com/andhus/scantree";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ wentasah ];
};
}
+2
View File
@@ -17241,6 +17241,8 @@ self: super: with self; {
scanpy = callPackage ../development/python-modules/scanpy { };
scantree = callPackage ../development/python-modules/scantree { };
scapy = callPackage ../development/python-modules/scapy {
inherit (pkgs) libpcap; # Avoid confusion with python package of the same name
};