python3Packages.purl: 1.5 -> 1.6

This commit is contained in:
Jonathan Ringer 2021-05-20 22:21:10 -07:00
parent 788deaad9d
commit 30e5965f6b
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -1,22 +1,19 @@
{ lib, buildPythonPackage, fetchFromGitHub
, nose
, six
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "purl";
version = "1.5";
version = "1.6";
src = fetchFromGitHub {
owner = "codeinthehole";
repo = "purl";
rev = version;
sha256 = "0vi7xdm2xc1rbqrz5jwpr7x7dnkcrbjf1mb4w1q2c2f8jca0kk0g";
sha256 = "sha256-Jb3JRW/PtQ7NlO4eQ9DmTPu/sjvFTg2mztphoIF79gc=";
};
propagatedBuildInputs = [ six ];
checkInputs = [ nose ];
checkInputs = [ pytestCheckHook];
meta = with lib; {
description = "Immutable URL class for easy URL-building and manipulation";