python3Packages.userpath: 1.4.1 -> 1.5.0

This commit is contained in:
Yevhen Shymotiuk 2021-05-17 20:43:15 +03:00 committed by Jonathan Ringer
parent f7d1b76d33
commit 427276572b

View file

@ -2,19 +2,18 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, click , click
, distro
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "userpath"; pname = "userpath";
version = "1.4.1"; version = "1.5.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256="0mfjmvx286z1dmnrc7bm65x8gj8qrmkcyagl0vf5ywfq0bm48591"; sha256="0fj2lj9vcns5sxv72v3ggrszcl7j1jd9a6ycnsl00218nycliy31";
}; };
propagatedBuildInputs = [ click distro ]; propagatedBuildInputs = [ click ];
# test suite is difficult to emulate in sandbox due to shell manipulation # test suite is difficult to emulate in sandbox due to shell manipulation
doCheck = false; doCheck = false;