ptpython: 0.35 -> 0.41

This commit is contained in:
Samuel Leathers 2017-09-14 20:48:17 -04:00
parent 0d9410a573
commit e355e9cf03
2 changed files with 26 additions and 16 deletions

View File

@ -0,0 +1,25 @@
{ stdenv, buildPythonPackage, fetchPypi, wcwidth, six, prompt_toolkit, docopt
, jedi, pygments }:
buildPythonPackage rec {
pname = "ptpython";
version = "0.41";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "1hcaaadkp5n37hxggraynifa33wx1akklzvf6y4rvgjxbjl2g2x7";
};
propagatedBuildInputs = [ wcwidth six prompt_toolkit docopt jedi pygments ];
# no tests to run
doCheck = false;
meta = with stdenv.lib; {
description = "An advanced Python REPL";
license = licenses.bsd3;
maintainers = with maintainers; [ mlieberman85 ];
platforms = platforms.all;
};
}

View File

@ -16328,22 +16328,7 @@ in {
};
};
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;
};
};
ptpython = callPackage ../development/python-modules/ptpython {};
publicsuffix = buildPythonPackage rec {
name = "publicsuffix-${version}";