python3Packages.catalogue: 2.0.1 -> 2.0.4

catalogue now vendors importlib-metadata, so the importlib-metadata
dependency is obsolete.
This commit is contained in:
Daniël de Kok 2021-05-18 08:47:48 +02:00
parent 636b3581f6
commit 5722718317

View file

@ -2,23 +2,20 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pythonOlder , pythonOlder
, importlib-metadata
, pytestCheckHook , pytestCheckHook
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "catalogue"; pname = "catalogue";
version = "2.0.1"; version = "2.0.4";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0d01077dbfca7aa53f3ef4adecccce636bce4f82e5b52237703ab2f56478e56e"; hash = "sha256-ntNF0ShVrzFfFxVYNhKya4YhorCi4775dNxdcS95g6o=";
}; };
propagatedBuildInputs = [ importlib-metadata ];
checkInputs = [ pytestCheckHook ]; checkInputs = [ pytestCheckHook ];
meta = with lib; { meta = with lib; {