Skip to content

Commit bc0e5c9

Browse files
committed
python312Packages.groovy: init at 0.1.2
1 parent 5427fe1 commit bc0e5c9

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
lib,
3+
buildPythonPackage,
4+
fetchPypi,
5+
hatchling,
6+
gradio,
7+
pytestCheckHook,
8+
}:
9+
10+
buildPythonPackage rec {
11+
pname = "groovy";
12+
version = "0.1.2";
13+
pyproject = true;
14+
15+
src = fetchPypi {
16+
inherit pname version;
17+
hash = "sha256-JcHcCbP51+KSRYqnYsa+uW6gNwcb9ekX/IH7eNIjEIM=";
18+
};
19+
20+
build-system = [
21+
hatchling
22+
];
23+
24+
pythonImportsCheck = [ "groovy" ];
25+
26+
nativeCheckInputs = [
27+
gradio
28+
pytestCheckHook
29+
];
30+
31+
# Attempts to load a cert file
32+
# FileNotFoundError: [Errno 2] No such file or directory
33+
doCheck = false;
34+
35+
meta = {
36+
description = "Small Python library created to help developers protect their applications from Server Side Request Forgery (SSRF) attacks";
37+
homepage = "https://pypi.org/project/groovy";
38+
license = lib.licenses.asl20;
39+
maintainers = with lib.maintainers; [ GaetanLepage ];
40+
};
41+
}

pkgs/top-level/python-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5724,6 +5724,8 @@ self: super: with self; {
57245724

57255725
groestlcoin-hash = callPackage ../development/python-modules/groestlcoin-hash { };
57265726

5727+
groovy = callPackage ../development/python-modules/groovy { };
5728+
57275729
grpc-google-iam-v1 = callPackage ../development/python-modules/grpc-google-iam-v1 { };
57285730

57295731
grpc-interceptor = callPackage ../development/python-modules/grpc-interceptor { };

0 commit comments

Comments
 (0)