Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

pythonPackages.pyfiglet : move to separate expression

+21 -6
+20
pkgs/development/python-modules/pyfiglet/default.nix
···
··· 1 + { stdenv, buildPythonPackage, fetchPypi }: 2 + 3 + buildPythonPackage rec { 4 + version = "0.7.5"; 5 + pname = "pyfiglet"; 6 + name = "${pname}-${version}"; 7 + 8 + src = fetchPypi { 9 + inherit pname version; 10 + sha256 = "04jy4182hn5xfs6jf432gxclfj1rhssd7bsf0b4gymrjzkhr8qa4"; 11 + }; 12 + 13 + doCheck = false; 14 + 15 + meta = with stdenv.lib; { 16 + description = "FIGlet in pure Python"; 17 + license = licenses.gpl2Plus; 18 + maintainers = with maintainers; [ thoughtpolice ]; 19 + }; 20 + }
+1 -6
pkgs/top-level/python-packages.nix
··· 17780 17781 pyfftw = callPackage ../development/python-modules/pyfftw { }; 17782 17783 - meta = { 17784 - description = "FIGlet in pure Python"; 17785 - license = licenses.gpl2Plus; 17786 - maintainers = with maintainers; [ thoughtpolice ]; 17787 - }; 17788 - }; 17789 17790 pyflakes = callPackage ../development/python-modules/pyflakes { }; 17791
··· 17780 17781 pyfftw = callPackage ../development/python-modules/pyfftw { }; 17782 17783 + pyfiglet = callPackage ../development/python-modules/pyfiglet { }; 17784 17785 pyflakes = callPackage ../development/python-modules/pyflakes { }; 17786