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 { lib, buildPythonPackage, fetchFromGitHub
, nose , pytestCheckHook
, six
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "purl"; pname = "purl";
version = "1.5"; version = "1.6";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "codeinthehole"; owner = "codeinthehole";
repo = "purl"; repo = "purl";
rev = version; rev = version;
sha256 = "0vi7xdm2xc1rbqrz5jwpr7x7dnkcrbjf1mb4w1q2c2f8jca0kk0g"; sha256 = "sha256-Jb3JRW/PtQ7NlO4eQ9DmTPu/sjvFTg2mztphoIF79gc=";
}; };
propagatedBuildInputs = [ six ]; checkInputs = [ pytestCheckHook];
checkInputs = [ nose ];
meta = with lib; { meta = with lib; {
description = "Immutable URL class for easy URL-building and manipulation"; description = "Immutable URL class for easy URL-building and manipulation";