12 packaging = buildPythonPackage rec {
17 disabled = pythonOlder "3.6";
20 inherit pname version;
21 sha256 = "sha256-3UfEKSfYmrkR5gZRiQfMLTofOLvQJjhZcGQ/nFuOz+s=";
28 propagatedBuildInputs = [ pyparsing ];
35 # Prevent circular dependency
38 passthru.tests = packaging.overridePythonAttrs (_: { doCheck = true; });
41 description = "Core utilities for Python packages";
42 homepage = "https://github.com/pypa/packaging";
43 license = with licenses; [ bsd2 asl20 ];
44 maintainers = with maintainers; [ bennofs ];