python3Packages.pluginbase: 1.0.0 -> 1.0.1

This commit is contained in:
Martin Weinelt 2021-06-18 23:47:30 +02:00
parent 28d1896728
commit c5f0fb81dd

View file

@ -1,12 +1,12 @@
{ lib, fetchPypi, buildPythonPackage, pytest }: { lib, fetchPypi, buildPythonPackage, pytest }:
buildPythonPackage rec { buildPythonPackage rec {
version = "1.0.0"; version = "1.0.1";
pname = "pluginbase"; pname = "pluginbase";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "497894df38d0db71e1a4fbbfaceb10c3ef49a3f95a0582e11b75f8adaa030005"; sha256 = "ff6c33a98fce232e9c73841d787a643de574937069f0d18147028d70d7dee287";
}; };
checkInputs = [ pytest ]; checkInputs = [ pytest ];