mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 17:46:38 +01:00
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
55 lines
979 B
Nix
55 lines
979 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
pythonAtLeast,
|
|
fetchFromGitHub,
|
|
anyio,
|
|
async-generator,
|
|
h11,
|
|
curio,
|
|
overly,
|
|
pytestCheckHook,
|
|
trio,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "asks";
|
|
version = "3.0.0";
|
|
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "theelous3";
|
|
repo = "asks";
|
|
rev = "v${version}";
|
|
hash = "sha256-ipQ5n2386DqR3kNpmTVhNPG+LC7gfCbvrlZ97+UP55g=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
anyio
|
|
async-generator
|
|
h11
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
curio
|
|
overly
|
|
pytestCheckHook
|
|
trio
|
|
];
|
|
|
|
disabledTests = lib.optionals (pythonAtLeast "3.12") [
|
|
# stuck in threading waiter.acquire()
|
|
"test_https_get"
|
|
"test_https_get_checks_cert"
|
|
];
|
|
|
|
pythonImportsCheck = [ "asks" ];
|
|
|
|
meta = {
|
|
description = "Async requests-like HTTP library for Python";
|
|
homepage = "https://github.com/theelous3/asks";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
}
|