Merge pull request #123863 from jonringer/bump-purl

python3Packages.purl: 1.5 -> 1.6
This commit is contained in:
Sandro 2021-05-31 02:25:55 +02:00 committed by GitHub
commit bc5b44a3b7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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";