python3Packages.catalogue: 2.0.0 -> 2.0.1

Changelog:
https://github.com/explosion/catalogue/releases/tag/v2.0.1
This commit is contained in:
Daniël de Kok 2020-08-28 08:47:08 +02:00
parent 0a29f8c620
commit 875f06c2f5

View File

@ -2,25 +2,29 @@
, buildPythonPackage
, fetchPypi
, pythonOlder
, pytestCheckHook
, importlib-metadata
}:
buildPythonPackage rec {
pname = "catalogue";
version = "2.0.0";
version = "2.0.1";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "34f8416ec5e7ed08e55c10414416e67c3f4d66edf83bc67320c3290775293816";
sha256 = "0d01077dbfca7aa53f3ef4adecccce636bce4f82e5b52237703ab2f56478e56e";
};
propagatedBuildInputs = [ importlib-metadata ];
checkInputs = [ pytestCheckHook ];
meta = with stdenv.lib; {
description = "Tiny library for adding function or object registries";
homepage = "https://github.com/explosion/catalogue";
changelog = "https://github.com/explosion/catalogue/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ danieldk ];
};