mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
pythonPackages.prompt_toolkit: 0.60 -> 1.0.0
Changes: https://raw.githubusercontent.com/jonathanslenders/python-prompt-toolkit/master/CHANGELOG
This commit is contained in:
parent
628ac272da
commit
d1b818e305
@ -15706,6 +15706,10 @@ in modules // {
|
|||||||
pymysql configobj sqlparse prompt_toolkit pygments click pycrypto
|
pymysql configobj sqlparse prompt_toolkit pygments click pycrypto
|
||||||
];
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace setup.py --replace "==" ">="
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
inherit version;
|
inherit version;
|
||||||
description = "Command-line interface for MySQL";
|
description = "Command-line interface for MySQL";
|
||||||
@ -16144,13 +16148,15 @@ in modules // {
|
|||||||
|
|
||||||
prompt_toolkit = buildPythonPackage rec {
|
prompt_toolkit = buildPythonPackage rec {
|
||||||
name = "prompt_toolkit-${version}";
|
name = "prompt_toolkit-${version}";
|
||||||
version = "0.60";
|
version = "1.0.0";
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
sha256 = "0gf3vv8dmj77xv7lrpccw9k3m1bgq3m71q9s6hqp77zvyd6cqjml";
|
sha256 = "192fyzs0hyq0k7wxxl00jwl334l5hwwmdflhvjqqrlj0dsgfs22i";
|
||||||
url = "mirror://pypi/p/prompt_toolkit/${name}.tar.gz";
|
url = "mirror://pypi/p/prompt_toolkit/${name}.tar.gz";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
disabled = isPy35;
|
||||||
|
|
||||||
buildInputs = with self; [ jedi ipython pygments ];
|
buildInputs = with self; [ jedi ipython pygments ];
|
||||||
propagatedBuildInputs = with self; [ docopt six wcwidth ];
|
propagatedBuildInputs = with self; [ docopt six wcwidth ];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user