mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pythonPackages.jedi: 0.9.0 -> 0.10.2
This commit is contained in:
parent
1e4a5b85ab
commit
8b09dea578
2 changed files with 33 additions and 24 deletions
32
pkgs/development/python-modules/jedi/default.nix
Normal file
32
pkgs/development/python-modules/jedi/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytest
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "jedi";
|
||||
version = "0.10.2";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "7abb618cac6470ebbd142e59c23daec5e6e063bfcecc8a43a037d2ab57276f4e";
|
||||
};
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
|
||||
checkPhase = ''
|
||||
py.test test
|
||||
'';
|
||||
|
||||
# 7 failed
|
||||
#doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/davidhalter/jedi;
|
||||
description = "An autocompletion tool for Python that can be used for text editors";
|
||||
license = lib.licenses.lgpl3Plus;
|
||||
maintainers = with lib.maintainers; [ garbas ];
|
||||
};
|
||||
}
|
|
@ -13243,30 +13243,7 @@ in {
|
|||
|
||||
jabberbot = callPackage ../development/python-modules/jabberbot.nix {};
|
||||
|
||||
jedi = buildPythonPackage (rec {
|
||||
name = "jedi-0.9.0";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/j/jedi/${name}.tar.gz";
|
||||
sha256 = "0c8x962ynpx001fdvp07m2q5jk4igkxbj3rmnydavphvlgxijk1v";
|
||||
};
|
||||
|
||||
buildInputs = [ self.pytest ];
|
||||
|
||||
checkPhase = ''
|
||||
py.test test
|
||||
'';
|
||||
|
||||
# 7 failed
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/davidhalter/jedi;
|
||||
description = "An autocompletion tool for Python that can be used for text editors";
|
||||
license = licenses.lgpl3Plus;
|
||||
maintainers = with maintainers; [ garbas ];
|
||||
};
|
||||
});
|
||||
jedi = callPackage ../development/python-modules/jedi { };
|
||||
|
||||
jellyfish = buildPythonPackage rec {
|
||||
version = "0.5.2";
|
||||
|
|
Loading…
Reference in a new issue