nixpkgs/pkgs/development/python-modules/packaging/default.nix

28 lines
645 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi
, pyparsing, six, pytest, pretend }:
buildPythonPackage rec {
pname = "packaging";
2018-04-04 21:12:19 +03:00
version = "17.1";
src = fetchPypi {
inherit pname version;
2018-04-04 21:12:19 +03:00
sha256 = "f019b770dd64e585a99714f1fd5e01c7a8f11b45635aa953fd41c689a657375b";
};
propagatedBuildInputs = [ pyparsing six ];
2018-02-18 21:31:39 +03:00
checkInputs = [ pytest pretend ];
checkPhase = ''
py.test tests
'';
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 ];
};
}