pythonPackages.pyfiglet : move to separate expression
This commit is contained in:
parent
4f43682759
commit
2d7733b6c2
20
pkgs/development/python-modules/pyfiglet/default.nix
Normal file
20
pkgs/development/python-modules/pyfiglet/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user