mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 14:10:33 +03:00
python313Packages.servefile: fix build (#386552)
This commit is contained in:
commit
789d5d0633
1 changed files with 5 additions and 1 deletions
|
@ -1,9 +1,11 @@
|
|||
{
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
legacy-cgi,
|
||||
lib,
|
||||
pyopenssl,
|
||||
pytestCheckHook,
|
||||
pythonAtLeast,
|
||||
requests,
|
||||
}:
|
||||
|
||||
|
@ -19,7 +21,9 @@ buildPythonPackage rec {
|
|||
hash = "sha256-hIqXwhmvstCslsCO973oK5FF2c8gZJ0wNUI/z8W+OjU=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pyopenssl ];
|
||||
dependencies = [
|
||||
pyopenssl
|
||||
] ++ lib.optionals (pythonAtLeast "3.13") [ legacy-cgi ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue