python310Packages.httptools: update disabled

This commit is contained in:
Fabian Affolter 2023-08-17 00:39:34 +02:00 committed by GitHub
parent 4015ea192a
commit 81b27752d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,13 +1,15 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, pythonOlder
}:
buildPythonPackage rec {
pname = "httptools";
version = "0.6.0";
disabled = isPy27;
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;