diff options
| author | tv <tv@krebsco.de> | 2019-07-13 11:35:49 +0200 | 
|---|---|---|
| committer | tv <tv@krebsco.de> | 2019-07-13 11:35:49 +0200 | 
| commit | e25854c530a7de1d4c05bd33fd8a4b23c9afe8e6 (patch) | |
| tree | 0f03b8e4098aa9eae0917032adcff1719f49e55d | |
| parent | 21d92db4d81af549784c8545c40f7a1abdb9c7dd (diff) | |
add packages for nixpkgs 19.03 compatibility
| -rw-r--r-- | default.nix | 6 | ||||
| -rw-r--r-- | pkgs/development/python-modules/prompt_toolkit/1.nix | 38 | ||||
| -rw-r--r-- | pkgs/development/python-modules/prompt_toolkit/default.nix | 35 | ||||
| -rw-r--r-- | pkgs/development/python-modules/six/default.nix | 30 | ||||
| -rw-r--r-- | pkgs/development/python-modules/tabulate/default.nix | 27 | 
5 files changed, 136 insertions, 0 deletions
| diff --git a/default.nix b/default.nix index 542ac51..c592e4c 100644 --- a/default.nix +++ b/default.nix @@ -281,12 +281,18 @@ self: super:        portalocker = python-super.callPackage ./pkgs/development/python-modules/portalocker { }; +      prompt_toolkit = python-super.callPackage ./pkgs/development/python-modules/prompt_toolkit { }; +        pydocumentdb = python-super.callPackage ./pkgs/development/python-modules/pydocumentdb {          requests = my_requests;        }; +      six = python-super.callPackage ./pkgs/development/python-modules/six { }; +        sshtunnel = python-super.callPackage ./pkgs/development/python-modules/sshtunnel { }; +      tabulate = python-super.callPackage ./pkgs/development/python-modules/tabulate { }; +        vsts-cd-manager = python-super.callPackage ./pkgs/development/python-modules/vsts-cd-manager { };      }; diff --git a/pkgs/development/python-modules/prompt_toolkit/1.nix b/pkgs/development/python-modules/prompt_toolkit/1.nix new file mode 100644 index 0000000..e9d44c8 --- /dev/null +++ b/pkgs/development/python-modules/prompt_toolkit/1.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, pytest +, docopt +, six +, wcwidth +, pygments +}: + +buildPythonPackage rec { +  pname = "prompt_toolkit"; +  version = "1.0.15"; + +  src = fetchPypi { +    inherit pname version; +    sha256 = "858588f1983ca497f1cf4ffde01d978a3ea02b01c8a26a8bbc5cd2e66d816917"; +  }; +  checkPhase = '' +    rm prompt_toolkit/win32_types.py +    py.test -k 'not test_pathcompleter_can_expanduser' +  ''; + +  checkInputs = [ pytest ]; +  propagatedBuildInputs = [ docopt six wcwidth pygments ]; + +  meta = { +    description = "Python library for building powerful interactive command lines"; +    longDescription = '' +      prompt_toolkit could be a replacement for readline, but it can be +      much more than that. It is cross-platform, everything that you build +      with it should run fine on both Unix and Windows systems. Also ships +      with a nice interactive Python shell (called ptpython) built on top. +    ''; +    homepage = https://github.com/jonathanslenders/python-prompt-toolkit; +    license = lib.licenses.bsd3; +  }; +} diff --git a/pkgs/development/python-modules/prompt_toolkit/default.nix b/pkgs/development/python-modules/prompt_toolkit/default.nix new file mode 100644 index 0000000..598310d --- /dev/null +++ b/pkgs/development/python-modules/prompt_toolkit/default.nix @@ -0,0 +1,35 @@ +{ lib +, buildPythonPackage +, fetchPypi +, pytest +, six +, wcwidth +}: + +buildPythonPackage rec { +  pname = "prompt_toolkit"; +  version = "1.0.15"; + +  src = fetchPypi { +    inherit pname version; +    sha256 = "858588f1983ca497f1cf4ffde01d978a3ea02b01c8a26a8bbc5cd2e66d816917"; +  }; +  checkPhase = '' +    py.test -k 'not test_pathcompleter_can_expanduser' +  ''; + +  checkInputs = [ pytest ]; +  propagatedBuildInputs = [ six wcwidth ]; + +  meta = { +    description = "Python library for building powerful interactive command lines"; +    longDescription = '' +      prompt_toolkit could be a replacement for readline, but it can be +      much more than that. It is cross-platform, everything that you build +      with it should run fine on both Unix and Windows systems. Also ships +      with a nice interactive Python shell (called ptpython) built on top. +    ''; +    homepage = https://github.com/jonathanslenders/python-prompt-toolkit; +    license = lib.licenses.bsd3; +  }; +} diff --git a/pkgs/development/python-modules/six/default.nix b/pkgs/development/python-modules/six/default.nix new file mode 100644 index 0000000..c47bfe0 --- /dev/null +++ b/pkgs/development/python-modules/six/default.nix @@ -0,0 +1,30 @@ +{ lib +, buildPythonPackage +, fetchPypi +, pytest +}: + +buildPythonPackage rec { +  pname = "six"; +  version = "1.11.0"; + +  src = fetchPypi { +    inherit pname version; +    sha256 = "1scqzwc51c875z23phj48gircqjgnn3af8zy2izjwmnlxrxsgs3h"; +  }; + +  checkInputs = [ pytest ]; + +  checkPhase = '' +    py.test test_six.py +  ''; + +  # To prevent infinite recursion with pytest +  doCheck = false; + +  meta = { +    description = "A Python 2 and 3 compatibility library"; +    homepage = https://pypi.python.org/pypi/six/; +    license = lib.licenses.mit; +  }; +} diff --git a/pkgs/development/python-modules/tabulate/default.nix b/pkgs/development/python-modules/tabulate/default.nix new file mode 100644 index 0000000..363caa5 --- /dev/null +++ b/pkgs/development/python-modules/tabulate/default.nix @@ -0,0 +1,27 @@ +{ lib +, buildPythonPackage +, fetchPypi +, nose +}: + +buildPythonPackage rec { +  version = "0.8.2"; +  pname = "tabulate"; + +  src = fetchPypi { +    inherit pname version; +    sha256 = "1wpp3hjyrw9f1c1xfxkzmm6y9w9jwwhxqa2lj6if4sqadpr17jp4"; +  }; + +  checkInputs = [ nose ]; + +  # Tests: cannot import common (relative import). +  doCheck = false; + +  meta = { +    description = "Pretty-print tabular data"; +    homepage = https://bitbucket.org/astanin/python-tabulate; +    license = lib.licenses.mit; +    maintainers = with lib.maintainers; [ fridh ]; +  }; +} | 
