python311Packages.httpx-socks: refactor

This commit is contained in:
Fabian Affolter 2024-03-05 09:34:10 +01:00
parent c49325b2ea
commit e3b87d3ba8

View File

@ -24,13 +24,13 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "httpx-socks"; pname = "httpx-socks";
version = "0.9.0"; version = "0.9.0";
format = "pyproject"; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "romis2012"; owner = "romis2012";
repo = pname; repo = "httpx-socks";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-x+4J+uxICYdjpwr/chHIr/BeFGITCR8F9W1kqAliv38="; hash = "sha256-x+4J+uxICYdjpwr/chHIr/BeFGITCR8F9W1kqAliv38=";
}; };