lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

python.pkgs.ipython_genutils: move expression

+31 -24
+30
pkgs/development/python-modules/ipython_genutils/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , nose 5 + , glibcLocales 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "ipython_genutils"; 10 + version = "0.2.0"; 11 + name = "${pname}-${version}"; 12 + 13 + src = fetchPypi { 14 + inherit pname version; 15 + sha256 = "eb2e116e75ecef9d4d228fdc66af54269afa26ab4463042e33785b887c628ba8"; 16 + }; 17 + 18 + checkInputs = [ nose glibcLocales ]; 19 + 20 + checkPhase = '' 21 + LC_ALL="en_US.UTF-8" nosetests -v ipython_genutils/tests 22 + ''; 23 + 24 + meta = { 25 + description = "Vestigial utilities from IPython"; 26 + homepage = http://ipython.org/; 27 + license = lib.licenses.bsd3; 28 + maintainers = with lib.maintainers; [ fridh ]; 29 + }; 30 + }
+1 -24
pkgs/top-level/python-packages.nix
··· 10503 10503 10504 10504 ipython_6 = callPackage ../development/python-modules/ipython { }; 10505 10505 10506 - ipython_genutils = buildPythonPackage rec { 10507 - version = "0.2.0"; 10508 - name = "ipython_genutils-${version}"; 10509 - 10510 - src = pkgs.fetchurl { 10511 - url = "mirror://pypi/i/ipython_genutils/${name}.tar.gz"; 10512 - sha256 = "eb2e116e75ecef9d4d228fdc66af54269afa26ab4463042e33785b887c628ba8"; 10513 - }; 10514 - 10515 - LC_ALL = "en_US.UTF-8"; 10516 - buildInputs = with self; [ nose pkgs.glibcLocales ]; 10517 - 10518 - checkPhase = '' 10519 - nosetests -v ipython_genutils/tests 10520 - ''; 10521 - 10522 - meta = { 10523 - description = "Vestigial utilities from IPython"; 10524 - homepage = http://ipython.org/; 10525 - license = licenses.bsd3; 10526 - maintainers = with maintainers; [ fridh ]; 10527 - }; 10528 - }; 10529 - 10506 + ipython_genutils = callPackage ../development/python-modules/ipython_genutils { }; 10530 10507 10531 10508 ipywidgets = callPackage ../development/python-modules/ipywidgets { }; 10532 10509