conway_polynomials: use python2
This commit is contained in:
parent
8456df5d37
commit
3e9d81498b
1 changed files with 2 additions and 2 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue