pythonPackages.httptools: disable python2, abandoned

This commit is contained in:
Jonathan Ringer 2020-06-16 13:59:29 -07:00
parent d377538c0d
commit 974f594457

View file

@ -1,11 +1,13 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
}:
buildPythonPackage rec {
pname = "httptools";
version = "0.1.1";
disabled = isPy27;
src = fetchPypi {
inherit pname version;