lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

python: dataclasses: 0.5 -> 0.6

+2 -2
+2 -2
pkgs/development/python-modules/dataclasses/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "dataclasses"; 5 - version = "0.5"; 5 + version = "0.6"; 6 6 7 7 # backport only works on Python 3.6, and is in the standard library in Python 3.7 8 8 disabled = !isPy36; 9 9 10 10 src = fetchPypi { 11 11 inherit pname version; 12 - sha256 = "07lgn1k56sqpw7yfzv5a6mwshsgaipjawflgyr6lrkryjl64481z"; 12 + sha256 = "6988bd2b895eef432d562370bb707d540f32f7360ab13da45340101bc2307d84"; 13 13 }; 14 14 15 15 meta = with stdenv.lib; {