1{ stdenv, buildPythonPackage, fetchPypi
2, pyparsing, six, pytest, pretend }:
3
4buildPythonPackage rec {
5 pname = "packaging";
6 version = "16.8";
7 name = "${pname}-${version}";
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "5d50835fdf0a7edf0b55e311b7c887786504efea1177abd7e69329a8e5ea619e";
12 };
13
14 propagatedBuildInputs = [ pyparsing six ];
15
16 buildInputs = [ pytest pretend ];
17
18 meta = with stdenv.lib; {
19 description = "Core utilities for Python packages";
20 homepage = https://github.com/pypa/packaging;
21 license = [ licenses.bsd2 licenses.asl20 ];
22 maintainers = with maintainers; [ bennofs ];
23 };
24}