about summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2021-03-25 11:43:39 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2021-03-25 11:43:39 +0100
commit3e9d81498bdf6bc483a850748f25979dfffc5a4f (patch)
tree600ccf4855a5475e015282ee739e2634b153b64a /pkgs/data
parent8456df5d37f13cda9ad2b485c732bb64f84abc01 (diff)
downloadnixlib-3e9d81498bdf6bc483a850748f25979dfffc5a4f.tar
nixlib-3e9d81498bdf6bc483a850748f25979dfffc5a4f.tar.gz
nixlib-3e9d81498bdf6bc483a850748f25979dfffc5a4f.tar.bz2
nixlib-3e9d81498bdf6bc483a850748f25979dfffc5a4f.tar.lz
nixlib-3e9d81498bdf6bc483a850748f25979dfffc5a4f.tar.xz
nixlib-3e9d81498bdf6bc483a850748f25979dfffc5a4f.tar.zst
nixlib-3e9d81498bdf6bc483a850748f25979dfffc5a4f.zip
conway_polynomials: use python2
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/misc/conway_polynomials/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/data/misc/conway_polynomials/default.nix b/pkgs/data/misc/conway_polynomials/default.nix
index f7da9381e610..cabc28a89ce9 100644
--- a/pkgs/data/misc/conway_polynomials/default.nix
+++ b/pkgs/data/misc/conway_polynomials/default.nix
@@ -1,13 +1,13 @@
 { lib, stdenv
 , fetchurl
-, python
+, python2
 }:
 
 stdenv.mkDerivation rec {
   pname = "conway_polynomials";
   version = "0.5";
 
-  pythonEnv = python.withPackages (ps: with ps; [ six ]);
+  pythonEnv = python2.withPackages (ps: with ps; [ six ]);
 
   src = fetchurl {
     url = "mirror://sageupstream/conway_polynomials/conway_polynomials-${version}.tar.bz2";