commit
f5ea99f195
@ -19,6 +19,8 @@ buildPythonPackage rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = [ vega pandas ipython traitlets ];
|
propagatedBuildInputs = [ vega pandas ipython traitlets ];
|
||||||
|
# Disabling checks, MockRequest object has no method send()
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A declarative statistical visualization library for Python.";
|
description = "A declarative statistical visualization library for Python.";
|
||||||
|
@ -1,9 +1,4 @@
|
|||||||
{ lib
|
{ stdenv, buildPythonPackage, fetchPypi, pytest, glibcLocales, tox, pytestcov }:
|
||||||
, buildPythonPackage
|
|
||||||
, fetchPypi
|
|
||||||
, pytest
|
|
||||||
, glibcLocales
|
|
||||||
}:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "jedi";
|
pname = "jedi";
|
||||||
@ -15,19 +10,19 @@ buildPythonPackage rec {
|
|||||||
sha256 = "7abb618cac6470ebbd142e59c23daec5e6e063bfcecc8a43a037d2ab57276f4e";
|
sha256 = "7abb618cac6470ebbd142e59c23daec5e6e063bfcecc8a43a037d2ab57276f4e";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ pytest glibcLocales ];
|
checkInputs = [ pytest glibcLocales tox pytestcov ];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
LC_ALL="en_US.UTF-8" py.test test
|
LC_ALL="en_US.UTF-8" py.test test
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# 7 failed
|
# tox required for tests: https://github.com/davidhalter/jedi/issues/808
|
||||||
#doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/davidhalter/jedi;
|
homepage = https://github.com/davidhalter/jedi;
|
||||||
description = "An autocompletion tool for Python that can be used for text editors";
|
description = "An autocompletion tool for Python that can be used for text editors";
|
||||||
license = lib.licenses.lgpl3Plus;
|
license = licenses.lgpl3Plus;
|
||||||
maintainers = with lib.maintainers; [ garbas ];
|
maintainers = with maintainers; [ garbas ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
25
pkgs/development/python-modules/ptpython/default.nix
Normal file
25
pkgs/development/python-modules/ptpython/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -16328,22 +16328,7 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
ptpython = buildPythonPackage rec {
|
ptpython = callPackage ../development/python-modules/ptpython {};
|
||||||
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 {
|
publicsuffix = buildPythonPackage rec {
|
||||||
name = "publicsuffix-${version}";
|
name = "publicsuffix-${version}";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user