depot/third_party/nixpkgs/pkgs/development/python-modules/packaging/default.nix
Default email e7f069c37c Project import generated by Copybara.
GitOrigin-RevId: 467ce5a9f45aaf96110b41eb863a56866e1c2c3c
2020-06-02 20:00:15 +02:00

30 lines
699 B
Nix

{ stdenv, buildPythonPackage, fetchPypi
, pyparsing, six, pytest, pretend }:
buildPythonPackage rec {
pname = "packaging";
version = "20.3";
src = fetchPypi {
inherit pname version;
sha256 = "3c292b474fda1671ec57d46d739d072bfd495a4f51ad01a055121d81e952b7a3";
};
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 ];
};
}