python3Packages.packaging: 20.4 -> 20.7
This commit is contained in:
parent
fa3932cba6
commit
5b0d792401
@ -1,18 +1,33 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi
|
{ stdenv
|
||||||
, pyparsing, six, pytest, pretend }:
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pyparsing
|
||||||
|
, six
|
||||||
|
, pytestCheckHook
|
||||||
|
, pretend
|
||||||
|
, flit-core
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "packaging";
|
pname = "packaging";
|
||||||
version = "20.4";
|
version = "20.7";
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "4357f74f47b9c12db93624a82154e9b120fa8293699949152b22065d556079f8";
|
sha256 = "Ba87uF0yA3fbKBzyVKsFDhp+vL9UEGhamkB+GKH4EjY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
flit-core
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [ pyparsing six ];
|
propagatedBuildInputs = [ pyparsing six ];
|
||||||
|
|
||||||
checkInputs = [ pytest pretend ];
|
checkInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
pretend
|
||||||
|
];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
py.test tests
|
py.test tests
|
||||||
|
Loading…
Reference in New Issue
Block a user