mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 15:26:34 +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
52 lines
991 B
Nix
52 lines
991 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
legacy-cgi,
|
|
pytestCheckHook,
|
|
|
|
# for passthru.tests
|
|
pyramid,
|
|
routes,
|
|
tokenlib,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "webob";
|
|
version = "1.8.9";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Pylons";
|
|
repo = "webob";
|
|
tag = version;
|
|
hash = "sha256-axJQwlybuqBS6RgI2z9pbw58vHF9aC9AxCg13CIKCLs=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
# https://github.com/Pylons/webob/issues/437
|
|
dependencies = [ legacy-cgi ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "webob" ];
|
|
|
|
disabledTestPaths = [
|
|
# AttributeError: 'Thread' object has no attribute 'isAlive'
|
|
"tests/test_in_wsgiref.py"
|
|
"tests/test_client_functional.py"
|
|
];
|
|
|
|
passthru.tests = {
|
|
inherit pyramid routes tokenlib;
|
|
};
|
|
|
|
meta = {
|
|
description = "WSGI request and response object";
|
|
homepage = "https://webob.org/";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|