Skip to content

Commit 03c3e87

Browse files
authored
python313Packages.quixote: 3.6 -> 3.7 (NixOS#378345)
2 parents becac83 + 92d72c3 commit 03c3e87

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

pkgs/development/python-modules/quixote/default.nix

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,14 @@
99

1010
buildPythonPackage rec {
1111
pname = "quixote";
12-
version = "3.6";
12+
version = "3.7";
1313
pyproject = true;
1414

1515
disabled = pythonOlder "3.8";
1616

1717
src = fetchPypi {
18-
pname = "Quixote";
19-
inherit version;
20-
hash = "sha256-78t6tznI3+vIRkWNi0HDPGhR8aGaET3IMXQvmAPdSSY=";
18+
inherit pname version;
19+
hash = "sha256-F4u50xz6sNwBIzgEglVnwKTKxguE6f1m9Y2DAUEJsGQ=";
2120
};
2221

2322
build-system = [ setuptools ];

pkgs/development/python-modules/twill/default.nix

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
lib,
33
buildPythonPackage,
44
fetchPypi,
5+
flask,
56
httpx,
67
lxml,
78
pyparsing,
@@ -13,14 +14,14 @@
1314

1415
buildPythonPackage rec {
1516
pname = "twill";
16-
version = "3.2.5";
17+
version = "3.3";
1718
pyproject = true;
1819

1920
disabled = pythonOlder "3.8";
2021

2122
src = fetchPypi {
2223
inherit pname version;
23-
hash = "sha256-/WIcM/zQ2UjGlGiJRYg9iTCQayzisxGBa5P0/2FDK2Q=";
24+
hash = "sha256-IprmAuqwzMwB6ryw0GsdRfeFK6ABP4nBM6VdlfgGNoQ=";
2425
};
2526

2627
pythonRelaxDeps = [ "lxml" ];
@@ -34,6 +35,7 @@ buildPythonPackage rec {
3435
];
3536

3637
nativeCheckInputs = [
38+
flask
3739
pytestCheckHook
3840
quixote
3941
];

0 commit comments

Comments
 (0)