about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-12-24 01:24:42 -0800
committerFrederik Rietdijk <fridh@fridh.nl>2019-12-30 16:46:52 +0100
commitfc5373cbc287038d269eaae6489cca8b0efbde13 (patch)
tree9ddc9980d00575c478247970d9efabea7ddfcd45
parent03a750545b7bda721f996d4f17322ddc61c03c2c (diff)
downloadnixlib-fc5373cbc287038d269eaae6489cca8b0efbde13.tar
nixlib-fc5373cbc287038d269eaae6489cca8b0efbde13.tar.gz
nixlib-fc5373cbc287038d269eaae6489cca8b0efbde13.tar.bz2
nixlib-fc5373cbc287038d269eaae6489cca8b0efbde13.tar.lz
nixlib-fc5373cbc287038d269eaae6489cca8b0efbde13.tar.xz
nixlib-fc5373cbc287038d269eaae6489cca8b0efbde13.tar.zst
nixlib-fc5373cbc287038d269eaae6489cca8b0efbde13.zip
pythonPackages.keyring-alt: python2 no longer supported
-rw-r--r--pkgs/development/python-modules/keyrings-alt/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/keyrings-alt/default.nix b/pkgs/development/python-modules/keyrings-alt/default.nix
index c7ec617f4f2c..aa873b63ab91 100644
--- a/pkgs/development/python-modules/keyrings-alt/default.nix
+++ b/pkgs/development/python-modules/keyrings-alt/default.nix
@@ -1,10 +1,11 @@
-{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, six
+{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, isPy27, six
 , pytest, backports_unittest-mock, keyring, setuptools_scm
 }:
 
 buildPythonPackage rec {
   pname = "keyrings.alt";
   version = "3.4.0";
+  disabled = isPy27;
 
   src = fetchPypi {
     inherit pname version;