pythonPackages.pyfiglet : move to separate expression

This commit is contained in:
wisut hantanong 2017-08-31 21:01:26 +07:00
parent 4f43682759
commit 2d7733b6c2
2 changed files with 21 additions and 6 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
version = "0.7.5";
pname = "pyfiglet";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "04jy4182hn5xfs6jf432gxclfj1rhssd7bsf0b4gymrjzkhr8qa4";
};
doCheck = false;
meta = with stdenv.lib; {
description = "FIGlet in pure Python";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ thoughtpolice ];
};
}

View File

@ -17780,12 +17780,7 @@ in {
pyfftw = callPackage ../development/python-modules/pyfftw { };
meta = {
description = "FIGlet in pure Python";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ thoughtpolice ];
};
};
pyfiglet = callPackage ../development/python-modules/pyfiglet { };
pyflakes = callPackage ../development/python-modules/pyflakes { };