3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/packaging/default.nix

31 lines
697 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi
, pyparsing, six, pytest, pretend }:
buildPythonPackage rec {
pname = "packaging";
2019-02-14 07:37:22 +00:00
version = "19.0";
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:22 +00:00
sha256 = "0c98a5d0be38ed775798ece1b9727178c4469d9c3b4ada66e8e6b7849f8732af";
};
propagatedBuildInputs = [ pyparsing six ];
2018-02-18 18:31:39 +00:00
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 ];
};
}