16 packaging = buildPythonPackage rec {
21 disabled = pythonOlder "3.7";
24 inherit pname version;
25 hash = "sha256-Am7XLI7T/M5b+JUFciWGmJJ/0dvaEKXpgc3wrDf08AI=";
28 nativeBuildInputs = [ flit-core ];
35 pythonImportsCheck = [
38 "packaging.requirements"
39 "packaging.specifiers"
44 # Prevent circular dependency with pytest
47 passthru.tests = packaging.overridePythonAttrs (_: {
52 changelog = "https://github.com/pypa/packaging/blob/${version}/CHANGELOG.rst";
53 description = "Core utilities for Python packages";
54 downloadPage = "https://github.com/pypa/packaging";
55 homepage = "https://packaging.pypa.io/";
56 license = with licenses; [
60 maintainers = teams.python.members ++ (with maintainers; [ bennofs ]);