1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 07:00:43 +00:00

python38Packages.toggl-cli: disable for python3.8

```
ERROR: Package 'togglCli' requires a different Python: 3.8.2 not in '>=3.5.0, <3.8.0'
```
This commit is contained in:
Jonathan Ringer 2020-06-04 12:07:41 -07:00 committed by Jon
parent 94d45c17cf
commit b6a43d62c2

View file

@ -1,13 +1,26 @@
{ stdenv, buildPythonPackage, fetchPypi, twine, pbr, click, click-completion, validate-email,
pendulum, ptable, requests, inquirer, pythonOlder, pytest, pytestcov, pytest-mock, faker, factory_boy,
setuptools }:
{ stdenv, buildPythonPackage, fetchPypi, pythonAtLeast, pythonOlder
, click
, click-completion
, factory_boy
, faker
, inquirer
, pbr
, pendulum
, ptable
, pytest
, pytestcov
, pytest-mock
, requests
, setuptools
, twine
, validate-email
}:
buildPythonPackage rec {
pname = "toggl-cli";
version = "2.1.0";
disabled = pythonOlder "3.5";
disabled = pythonOlder "3.5" || pythonAtLeast "3.8";
src = fetchPypi {
pname = "togglCli";