nixpkgs/pkgs/development/python-modules/packaging/default.nix
2021-03-23 10:43:46 +01:00

42 lines
748 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pyparsing
, six
, pytestCheckHook
, pretend
, setuptools
}:
buildPythonPackage rec {
pname = "packaging";
version = "20.9";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-WzJ6wTINyGPcpy9FFOzAhvMRhnRLhKIwN0zB/Xdv6uU=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [ pyparsing six ];
checkInputs = [
pytestCheckHook
pretend
];
# Prevent circular dependency
doCheck = false;
meta = with lib; {
description = "Core utilities for Python packages";
homepage = "https://github.com/pypa/packaging";
license = [ licenses.bsd2 licenses.asl20 ];
maintainers = with maintainers; [ bennofs ];
};
}