lol
fork

Configure Feed

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

pythonPackages.pylibconfig2: 0.2.4 -> 0.2.5 (#40985)

authored by

Lancelot SIX and committed by
xeji
b86aa554 96c81d2f

+22 -19
+21
pkgs/development/python-modules/pylibconfig2/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi, pyparsing }: 2 + buildPythonPackage rec { 3 + pname = "pylibconfig2"; 4 + version = "0.2.5"; 5 + 6 + src = fetchPypi { 7 + inherit pname version; 8 + sha256 = "1iwm11v0ghv2pq2cyvly7gdwrhxsx6iwi581fz46l0snhgcd4sqq"; 9 + }; 10 + 11 + # tests not included in the distribution 12 + doCheck = false; 13 + 14 + propagatedBuildInputs = [ pyparsing ]; 15 + 16 + meta = with stdenv.lib; { 17 + homepage = https://github.com/heinzK1X/pylibconfig2; 18 + description = "Pure python library for libconfig syntax"; 19 + license = licenses.gpl3; 20 + }; 21 + }
+1 -19
pkgs/top-level/python-packages.nix
··· 9887 9887 9888 9888 pybase64 = callPackage ../development/python-modules/pybase64 { }; 9889 9889 9890 - pylibconfig2 = buildPythonPackage rec { 9891 - name = "pylibconfig2-${version}"; 9892 - version = "0.2.4"; 9893 - 9894 - src = pkgs.fetchurl { 9895 - url = "mirror://pypi/p/pylibconfig2/${name}.tar.gz"; 9896 - sha256 = "0kyg6gldj6hi2jhc5xhi834bb2mcaiy24dvfik963shnldqr7kqg"; 9897 - }; 9898 - 9899 - doCheck = false; 9900 - 9901 - propagatedBuildInputs = with self ; [ pyparsing ]; 9902 - 9903 - meta = { 9904 - homepage = https://github.com/heinzK1X/pylibconfig2; 9905 - description = "Pure python library for libconfig syntax"; 9906 - license = licenses.gpl3; 9907 - }; 9908 - }; 9890 + pylibconfig2 = callPackage ../development/python-modules/pylibconfig2 { }; 9909 9891 9910 9892 pylibmc = callPackage ../development/python-modules/pylibmc {}; 9911 9893