python.pkgs.texttable: 0.8.4 -> 1.1.1

This commit is contained in:
Frederik Rietdijk 2017-12-30 11:03:19 +01:00
parent 7a3d7cc30d
commit dab53a9005
2 changed files with 21 additions and 14 deletions

View File

@ -0,0 +1,20 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "texttable";
version = "1.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "44674d1d470a9fc264c4d1eba44b74463ca0066d7b954453dd5a4f8057779c9c";
};
meta = {
description = "A module to generate a formatted text table, using ASCII characters";
homepage = http://foutaise.org/code/;
license = lib.licenses.lgpl2;
};
}

View File

@ -18373,20 +18373,7 @@ in {
}; };
}; };
texttable = self.buildPythonPackage rec { texttable = callPackage ../development/python-modules/texttable { };
name = "texttable-0.8.4";
src = pkgs.fetchurl {
url = "mirror://pypi/t/texttable/${name}.tar.gz";
sha256 = "0bkhs4dx9s6g7fpb969hygq56hyz4ncfamlynw72s0n6nqfbd1w5";
};
meta = {
description = "A module to generate a formatted text table, using ASCII characters";
homepage = http://foutaise.org/code/;
license = licenses.lgpl2;
};
};
tiros = callPackage ../development/python-modules/tiros { }; tiros = callPackage ../development/python-modules/tiros { };