15 packaging = buildPythonPackage rec {
20 disabled = pythonOlder "3.7";
23 inherit pname version;
24 hash = "sha256-64LF4+ViCQdHZuaIW7BLjDigwBXQowA26+fs40yZiek=";
36 pythonImportsCheck = [
39 "packaging.requirements"
40 "packaging.specifiers"
45 # Prevent circular dependency with pytest
48 passthru.tests = packaging.overridePythonAttrs (_: { doCheck = true; });
51 changelog = "https://github.com/pypa/packaging/blob/${version}/CHANGELOG.rst";
52 description = "Core utilities for Python packages";
53 downloadPage = "https://github.com/pypa/packaging";
54 homepage = "https://packaging.pypa.io/";
55 license = with licenses; [ bsd2 asl20 ];
56 maintainers = teams.python.members ++ (with maintainers; [ bennofs ]);