python3Packages.wrapio: 1.0.0 -> 2.0.0

This commit is contained in:
Stefan Frijters 2021-08-14 11:16:35 +02:00
parent c580b69c10
commit 048bfd4ab7
No known key found for this signature in database
GPG key ID: 7619A6BC6E7DFA6F

View file

@ -1,15 +1,18 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
}:
buildPythonPackage rec {
pname = "wrapio";
version = "1.0.0";
version = "2.0.0";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-JWcPsqZy1wM6/mbU3H0W3EkpLg0wrEUUg3pT/QrL+rE=";
sha256 = "sha256-CUocIbdZ/tJQCxAHzhFpB267ynlXf8Mu+thcRRc0yeg=";
};
doCheck = false;