python: dataclasses: 0.6 -> 0.7

This commit is contained in:
Frederik Rietdijk 2019-10-24 08:47:28 +02:00
parent c3681bd14c
commit e2bc89ddfb

View File

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