summary refs log tree commit diff
path: root/pkgs/development/python-modules/cheroot
diff options
context:
space:
mode:
authorDima <dgoldin+github@protonmail.ch>2019-11-27 21:05:34 +0100
committerLassulus <github@lassul.us>2019-12-07 22:26:54 +0100
commitfdefc23f7d8b2660483ad0be132a10c6d4a92df2 (patch)
treee6a94f6f5e57be4a7a54462f12540765495c7060 /pkgs/development/python-modules/cheroot
parent1850d616acbf019f7c5786c4d99cd68b1f760258 (diff)
downloadnixpkgs-fdefc23f7d8b2660483ad0be132a10c6d4a92df2.tar
nixpkgs-fdefc23f7d8b2660483ad0be132a10c6d4a92df2.tar.gz
nixpkgs-fdefc23f7d8b2660483ad0be132a10c6d4a92df2.tar.bz2
nixpkgs-fdefc23f7d8b2660483ad0be132a10c6d4a92df2.tar.lz
nixpkgs-fdefc23f7d8b2660483ad0be132a10c6d4a92df2.tar.xz
nixpkgs-fdefc23f7d8b2660483ad0be132a10c6d4a92df2.tar.zst
nixpkgs-fdefc23f7d8b2660483ad0be132a10c6d4a92df2.zip
mnemosyne: fix application
This application has been missing some dependencies and the
correct environment for Qt. Additionally I added a depdency
on anki to support the import feature.

The project has also moved development to Github, as very briefly
mentioned on https://mnemosyne-proj.org/contributing.php but the
2.6.1 version released there seems to differ and causes a bunch
of new problems, so leaving it for now.
Diffstat (limited to 'pkgs/development/python-modules/cheroot')
-rw-r--r--pkgs/development/python-modules/cheroot/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/cheroot/default.nix b/pkgs/development/python-modules/cheroot/default.nix
index 2f86abd728f..971d8848b37 100644
--- a/pkgs/development/python-modules/cheroot/default.nix
+++ b/pkgs/development/python-modules/cheroot/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchPypi, buildPythonPackage, pythonAtLeast
+{ stdenv, fetchPypi, buildPythonPackage, pythonAtLeast, isPy3k
 , more-itertools, six, setuptools_scm, setuptools-scm-git-archive
 , pytest, pytestcov, portend, pytest-testmon, pytest-mock
 , backports_unittest-mock, pyopenssl, requests, trustme, requests-unixsocket
@@ -10,6 +10,8 @@ buildPythonPackage rec {
   pname = "cheroot";
   version = "8.2.1";
 
+  disabled = !isPy3k;
+
   src = fetchPypi {
     inherit pname version;
     sha256 = "5b525b3e4a755adf78070ab54c1821fb860d4255a9317dba2b88eb2df2441cff";