pythonPackages.trio: fix build (#46342)
Fixes the build for `python3Packages.trio' for the next ZHF iteration. Please refer to the Hydra build for further reference: https://hydra.nixos.org/build/80617356 `python3Packages.sniffio` is needed for the build, otherwise the build aborts with an error like this: ``` Could not find a version that satisfies the requirement sniffio (from trio==0.6.0) (from versions: ) No matching distribution found for sniffio (from trio==0.6.0) ``` See #45960
This commit is contained in:
parent
56d0a70ef5
commit
218ac50fd4
30
pkgs/development/python-modules/sniffio/default.nix
Normal file
30
pkgs/development/python-modules/sniffio/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ buildPythonPackage, lib, fetchPypi, glibcLocales, isPy3k, contextvars
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "sniffio";
|
||||||
|
version = "1.0.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1dzb0nx3m1hpjgsv6s6w5ac2jcmywcz6gqnfkw8rwz1vkr1836rf";
|
||||||
|
};
|
||||||
|
|
||||||
|
# breaks with the following error:
|
||||||
|
# > TypeError: 'encoding' is an invalid keyword argument for this function
|
||||||
|
disabled = !isPy3k;
|
||||||
|
|
||||||
|
buildInputs = [ glibcLocales ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = lib.optionals (pythonOlder "3.7") [ contextvars ];
|
||||||
|
|
||||||
|
# no tests distributed with PyPI
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = https://github.com/python-trio/sniffio;
|
||||||
|
license = licenses.asl20;
|
||||||
|
description = "Sniff out which async library your code is running under";
|
||||||
|
};
|
||||||
|
}
|
@ -8,6 +8,7 @@
|
|||||||
, pytest
|
, pytest
|
||||||
, pyopenssl
|
, pyopenssl
|
||||||
, trustme
|
, trustme
|
||||||
|
, sniffio
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -31,6 +32,7 @@ buildPythonPackage rec {
|
|||||||
async_generator
|
async_generator
|
||||||
idna
|
idna
|
||||||
outcome
|
outcome
|
||||||
|
sniffio
|
||||||
] ++ lib.optionals (pythonOlder "3.7") [ contextvars ];
|
] ++ lib.optionals (pythonOlder "3.7") [ contextvars ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
@ -574,6 +574,8 @@ in {
|
|||||||
|
|
||||||
trio = callPackage ../development/python-modules/trio {};
|
trio = callPackage ../development/python-modules/trio {};
|
||||||
|
|
||||||
|
sniffio = callPackage ../development/python-modules/sniffio { };
|
||||||
|
|
||||||
tokenserver = callPackage ../development/python-modules/tokenserver {};
|
tokenserver = callPackage ../development/python-modules/tokenserver {};
|
||||||
|
|
||||||
toml = callPackage ../development/python-modules/toml { };
|
toml = callPackage ../development/python-modules/toml { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user