Skip to content

Commit

Permalink
pythonPackages.termstyle: 0.1.10 -> 0.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Schütz committed Feb 22, 2018
1 parent 84fbf2a commit 09ae15e
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 15 deletions.
20 changes: 20 additions & 0 deletions pkgs/development/python-modules/termstyle/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
pname = "termstyle";
version = "0.1.11";

src = fetchPypi {
inherit pname version;
sha256 = "ef74b83698ea014112040cf32b1a093c1ab3d91c4dd18ecc03ec178fd99c9f9f";
};

# Only manual tests
doCheck = false;

meta = with lib; {
description = "Console colouring for python";
homepage = "https://pypi.python.org/pypi/python-termstyle/0.1.10";
license = licenses.bsdOriginal;
};
}
16 changes: 1 addition & 15 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20959,21 +20959,7 @@ EOF
};
};

termstyle = buildPythonPackage rec {
name = "python-termstyle-${version}";
version = "0.1.10";
src = pkgs.fetchurl {
url = "mirror://pypi/p/python-termstyle/${name}.tar.gz";
sha256 = "1qllzkx1alf14zcfapppf8w87si4cpa7lgjmdp3f5idzdyqnnapl";
};

meta = {
description = "Console colouring for python";
homepage = "https://pypi.python.org/pypi/python-termstyle/0.1.10";
license = licenses.bsdOriginal;
};

};
termstyle = callPackage ../development/python-modules/termstyle { };

green = buildPythonPackage rec {
name = "green-${version}";
Expand Down

0 comments on commit 09ae15e

Please sign in to comment.