mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
python3Packages.ptpython: 2.0.6 -> 3.0.1
This commit is contained in:
parent
d2377446f4
commit
aa2cd3e24b
1 changed files with 5 additions and 4 deletions
|
@ -1,16 +1,17 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi, prompt_toolkit, docopt , jedi, pygments, isPy3k }:
|
||||
{ stdenv, buildPythonPackage, fetchPypi, prompt_toolkit, appdirs, docopt, jedi
|
||||
, pygments, isPy3k }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ptpython";
|
||||
version = "2.0.6";
|
||||
version = "3.0.1";
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "90e24040e82de4abae0bbe6e352d59ae6657e14e1154e742c0038679361b052f";
|
||||
sha256 = "a69cce0aa04f0075e2e65287a0ee2f3a928c0591b301ce22aa2e498af1ebcb4b";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ prompt_toolkit docopt jedi pygments ];
|
||||
propagatedBuildInputs = [ appdirs prompt_toolkit docopt jedi pygments ];
|
||||
|
||||
# no tests to run
|
||||
doCheck = false;
|
||||
|
|
Loading…
Reference in a new issue