python3Packages.dataclasses: 0.7 -> 0.8

This commit is contained in:
Frederik Rietdijk 2020-11-29 15:04:26 +01:00
parent e6651d2616
commit 24398bd263

View file

@ -2,14 +2,14 @@
buildPythonPackage rec {
pname = "dataclasses";
version = "0.7";
version = "0.8";
# backport only works on Python 3.6, and is in the standard library in Python 3.7
disabled = !isPy36;
src = fetchPypi {
inherit pname version;
sha256 = "494a6dcae3b8bcf80848eea2ef64c0cc5cd307ffc263e17cdf42f3e5420808e6";
sha256 = "8479067f342acf957dc82ec415d355ab5edb7e7646b90dc6e2fd1d96ad084c97";
};
meta = with stdenv.lib; {