lol

python3Packages.purl: 1.5 -> 1.6

+4 -7
+4 -7
pkgs/development/python-modules/purl/default.nix
··· 1 1 { lib, buildPythonPackage, fetchFromGitHub 2 - , nose 3 - , six 2 + , pytestCheckHook 4 3 }: 5 4 6 5 buildPythonPackage rec { 7 6 pname = "purl"; 8 - version = "1.5"; 7 + version = "1.6"; 9 8 10 9 src = fetchFromGitHub { 11 10 owner = "codeinthehole"; 12 11 repo = "purl"; 13 12 rev = version; 14 - sha256 = "0vi7xdm2xc1rbqrz5jwpr7x7dnkcrbjf1mb4w1q2c2f8jca0kk0g"; 13 + sha256 = "sha256-Jb3JRW/PtQ7NlO4eQ9DmTPu/sjvFTg2mztphoIF79gc="; 15 14 }; 16 15 17 - propagatedBuildInputs = [ six ]; 18 - 19 - checkInputs = [ nose ]; 16 + checkInputs = [ pytestCheckHook]; 20 17 21 18 meta = with lib; { 22 19 description = "Immutable URL class for easy URL-building and manipulation";