diff options
| author | Jonathan Ringer <jonringer117@gmail.com> | 2021-05-20 22:21:10 -0700 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2021-05-31 00:29:19 +0000 |
| commit | 046d6c14dd6f93aeb4853ff3658ccb2d02ad44f7 (patch) | |
| tree | 3d10baa4840225655d4785a347f98de80e4d7029 | |
| parent | xfitter: remove `hardeningDisable = [ "format" ];` (#125001) (diff) | |
| download | nixpkgs-origin/backport-123863-to-release-21.05.tar.gz | |
python3Packages.purl: 1.5 -> 1.6origin/backport-123863-to-release-21.05
(cherry picked from commit 30e5965f6bb904cb0e28ac6f02c36c6101ada49a)
| -rw-r--r-- | pkgs/development/python-modules/purl/default.nix | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/purl/default.nix b/pkgs/development/python-modules/purl/default.nix index 43fd5b71ca6c..aa85ea3965ab 100644 --- a/pkgs/development/python-modules/purl/default.nix +++ b/pkgs/development/python-modules/purl/default.nix @@ -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"; |
