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 { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, isPy27 , pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "httptools"; pname = "httptools";
version = "0.6.0"; version = "0.6.0";
disabled = isPy27; format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;