lol
fork

Configure Feed

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

pythonPackages.termstyle: 0.1.10 -> 0.1.11

+21 -15
+20
pkgs/development/python-modules/termstyle/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi }: 2 + 3 + buildPythonPackage rec { 4 + pname = "termstyle"; 5 + version = "0.1.11"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "ef74b83698ea014112040cf32b1a093c1ab3d91c4dd18ecc03ec178fd99c9f9f"; 10 + }; 11 + 12 + # Only manual tests 13 + doCheck = false; 14 + 15 + meta = with lib; { 16 + description = "Console colouring for python"; 17 + homepage = "https://pypi.python.org/pypi/python-termstyle/0.1.10"; 18 + license = licenses.bsdOriginal; 19 + }; 20 + }
+1 -15
pkgs/top-level/python-packages.nix
··· 20959 20959 }; 20960 20960 }; 20961 20961 20962 - termstyle = buildPythonPackage rec { 20963 - name = "python-termstyle-${version}"; 20964 - version = "0.1.10"; 20965 - src = pkgs.fetchurl { 20966 - url = "mirror://pypi/p/python-termstyle/${name}.tar.gz"; 20967 - sha256 = "1qllzkx1alf14zcfapppf8w87si4cpa7lgjmdp3f5idzdyqnnapl"; 20968 - }; 20969 - 20970 - meta = { 20971 - description = "Console colouring for python"; 20972 - homepage = "https://pypi.python.org/pypi/python-termstyle/0.1.10"; 20973 - license = licenses.bsdOriginal; 20974 - }; 20975 - 20976 - }; 20962 + termstyle = callPackage ../development/python-modules/termstyle { }; 20977 20963 20978 20964 green = buildPythonPackage rec { 20979 20965 name = "green-${version}";