ptpython: init at 0.35

This commit is contained in:
Michael Lieberman 2016-10-05 15:36:57 -04:00
parent cd1ec18b42
commit 5baecbc4af
2 changed files with 18 additions and 0 deletions

View file

@ -272,6 +272,7 @@
mingchuan = "Ming Chuan <ming@culpring.com>";
mirdhyn = "Merlin Gaillard <mirdhyn@gmail.com>";
mirrexagon = "Andrew Abbott <mirrexagon@mirrexagon.com>";
mlieberman85 = "Michael Lieberman <mlieberman85@gmail.com>";
modulistic = "Pablo Costa <modulistic@gmail.com>";
mog = "Matthew O'Gorman <mog-lists@rldn.net>";
moosingin3space = "Nathan Moos <moosingin3space@gmail.com>";

View file

@ -18627,6 +18627,23 @@ in modules // {
};
};
ptpython = buildPythonPackage rec {
name = "ptpython-0.35";
propagatedBuildInputs = with self;
[ wcwidth six prompt_toolkit docopt jedi pygments];
src = pkgs.fetchurl {
url = "mirror://pypi/p/ptpython/${name}.tar.gz";
sha256 = "e0d380fbccb03ed33a7f33d96988e66fbd286bc813c9ceea84a1b3b5615a5660";
};
meta = {
description = "An advanced Python REPL";
license = licenses.bsd3;
maintainers = with maintainers; [ mlieberman85 ];
platforms = platforms.all;
};
};
publicsuffix = buildPythonPackage rec {
name = "publicsuffix-${version}";
version = "1.0.2";