mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
python2Packages.pyvcd: disable python2
``` Processing ./pyvcd-0.2.3-py2.py3-none-any.whl ERROR: Package 'pyvcd' requires a different Python: 2.7.18 not in '>=3.6' ```
This commit is contained in:
parent
7f6d634d04
commit
a627278e13
@ -1,6 +1,7 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, setuptools_scm
|
||||
, six
|
||||
, pytest
|
||||
@ -9,6 +10,7 @@
|
||||
buildPythonPackage rec {
|
||||
version = "0.2.3";
|
||||
pname = "pyvcd";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
|
Loading…
Reference in New Issue
Block a user