tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.polyswarm-api: format with nixfmt
Fabian Affolter
2 years ago
b03bb1e0
138ffe40
+18
-25
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
polyswarm-api
default.nix
+18
-25
pkgs/development/python-modules/polyswarm-api/default.nix
···
1
-
{ lib
2
-
, buildPythonPackage
3
-
, fetchFromGitHub
4
-
, future
5
-
, jsonschema
6
-
, pytestCheckHook
7
-
, python-dateutil
8
-
, pythonOlder
9
-
, pythonRelaxDepsHook
10
-
, requests
11
-
, responses
12
-
, setuptools
13
-
, vcrpy
0
14
}:
15
16
buildPythonPackage rec {
···
27
hash = "sha256-iY0I5z+aDLQekjgHT5v/ZprCkCgNPkyImmmaCQgnoYc=";
28
};
29
30
-
pythonRelaxDeps = [
31
-
"future"
32
-
];
33
34
-
nativeBuildInputs = [
35
-
pythonRelaxDepsHook
36
-
];
37
38
-
build-system = [
39
-
setuptools
40
-
];
41
42
dependencies = [
43
future
···
52
vcrpy
53
];
54
55
-
pythonImportsCheck = [
56
-
"polyswarm_api"
57
-
];
58
59
meta = with lib; {
60
description = "Library to interface with the PolySwarm consumer APIs";
···
1
+
{
2
+
lib,
3
+
buildPythonPackage,
4
+
fetchFromGitHub,
5
+
future,
6
+
jsonschema,
7
+
pytestCheckHook,
8
+
python-dateutil,
9
+
pythonOlder,
10
+
pythonRelaxDepsHook,
11
+
requests,
12
+
responses,
13
+
setuptools,
14
+
vcrpy,
15
}:
16
17
buildPythonPackage rec {
···
28
hash = "sha256-iY0I5z+aDLQekjgHT5v/ZprCkCgNPkyImmmaCQgnoYc=";
29
};
30
31
+
pythonRelaxDeps = [ "future" ];
0
0
32
33
+
nativeBuildInputs = [ pythonRelaxDepsHook ];
0
0
34
35
+
build-system = [ setuptools ];
0
0
36
37
dependencies = [
38
future
···
47
vcrpy
48
];
49
50
+
pythonImportsCheck = [ "polyswarm_api" ];
0
0
51
52
meta = with lib; {
53
description = "Library to interface with the PolySwarm consumer APIs";