mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #98934 from thall/pure-eval
pythonPackages.pure-eval: upgrade to Python 3
This commit is contained in:
commit
f4a08ce30e
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue