lol
0
fork

Configure Feed

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

python3Packages.distro: 1.7.0 -> 1.8.0

+12 -3
+12 -3
pkgs/development/python-modules/distro/default.nix
··· 1 - { lib, fetchPypi, buildPythonPackage }: 1 + { lib 2 + , fetchPypi 3 + , buildPythonPackage 4 + , setuptools 5 + }: 2 6 3 7 buildPythonPackage rec { 4 8 pname = "distro"; 5 - version = "1.7.0"; 9 + version = "1.8.0"; 10 + format = "pyproject"; 6 11 7 12 src = fetchPypi { 8 13 inherit pname version; 9 - sha256 = "sha256-FRrsz2DCFkApMrUuQO5HepOfjViJiSc3igKrvoUsHDk="; 14 + hash = "sha256-AuER0dxqUKu47ta/McPkjtiwgw0eoqG3jGF2XCUT/dg="; 10 15 }; 16 + 17 + nativeBuildInputs = [ 18 + setuptools 19 + ]; 11 20 12 21 # tests are very targeted at individual linux distributions 13 22 doCheck = false;