nixpkgs/pkgs/development/python-modules/packaging/default.nix
2019-10-27 16:26:48 +01:00

31 lines
697 B
Nix

{ stdenv, buildPythonPackage, fetchPypi
, pyparsing, six, pytest, pretend }:
buildPythonPackage rec {
pname = "packaging";
version = "19.2";
src = fetchPypi {
inherit pname version;
sha256 = "28b924174df7a2fa32c1953825ff29c61e2f5e082343165438812f00d3a7fc47";
};
propagatedBuildInputs = [ pyparsing six ];
checkInputs = [ pytest pretend ];
checkPhase = ''
py.test tests
'';
# Prevent circular dependency
doCheck = false;
meta = with stdenv.lib; {
description = "Core utilities for Python packages";
homepage = https://github.com/pypa/packaging;
license = [ licenses.bsd2 licenses.asl20 ];
maintainers = with maintainers; [ bennofs ];
};
}