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

31 lines
699 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi
, pyparsing, six, pytest, pretend }:
buildPythonPackage rec {
pname = "packaging";
2020-06-06 07:47:20 +01:00
version = "20.4";
src = fetchPypi {
inherit pname version;
2020-06-06 07:47:20 +01:00
sha256 = "4357f74f47b9c12db93624a82154e9b120fa8293699949152b22065d556079f8";
};
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 ];
};
}