3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.purl: propagate six, add import check

This commit is contained in:
Martin Weinelt 2022-03-31 16:23:01 +02:00
parent 50402f8839
commit 5cc1b54f4e

View file

@ -1,4 +1,7 @@
{ lib, buildPythonPackage, fetchFromGitHub
{ lib
, buildPythonPackage
, fetchFromGitHub
, six
, pytestCheckHook
}:
@ -13,7 +16,17 @@ buildPythonPackage rec {
sha256 = "sha256-Jb3JRW/PtQ7NlO4eQ9DmTPu/sjvFTg2mztphoIF79gc=";
};
checkInputs = [ pytestCheckHook];
propagatedBuildInputs = [
six
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"purl"
];
meta = with lib; {
description = "Immutable URL class for easy URL-building and manipulation";