File tree Expand file tree Collapse file tree 2 files changed +43
-0
lines changed
development/python-modules/groovy Expand file tree Collapse file tree 2 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff 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 { };
You can’t perform that action at this time.
0 commit comments