pythonPackages.pure-eval: upgrade to Python 3

ZHF: NixOS#97479
https://hydra.nixos.org/build/127622386
gstqt5
Niclas Thall 2020-09-27 12:10:12 +02:00
parent 74f3e9cce1
commit 15e1e144df
1 changed files with 3 additions and 1 deletions

View File

@ -1,9 +1,11 @@
{ lib, buildPythonPackage, fetchFromGitHub, setuptools_scm, toml, pytest }:
{ buildPythonPackage, isPy3k, lib, fetchFromGitHub, setuptools_scm, toml, pytest }:
buildPythonPackage rec {
pname = "pure_eval";
version = "0.1.0";
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "alexmojaki";
repo = pname;