mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
python2Packages.pytools: disable for python2
This commit is contained in:
parent
d86aa32426
commit
466a281408
|
@ -1,6 +1,7 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, decorator
|
||||
, appdirs
|
||||
, six
|
||||
|
@ -11,6 +12,7 @@
|
|||
buildPythonPackage rec {
|
||||
pname = "pytools";
|
||||
version = "2020.4";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
|
|
Loading…
Reference in a new issue