+18
-25
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
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,
14
15
}:
15
16
16
17
buildPythonPackage rec {
···
27
28
hash = "sha256-iY0I5z+aDLQekjgHT5v/ZprCkCgNPkyImmmaCQgnoYc=";
28
29
};
29
30
30
-
pythonRelaxDeps = [
31
-
"future"
32
-
];
31
+
pythonRelaxDeps = [ "future" ];
33
32
34
-
nativeBuildInputs = [
35
-
pythonRelaxDepsHook
36
-
];
33
+
nativeBuildInputs = [ pythonRelaxDepsHook ];
37
34
38
-
build-system = [
39
-
setuptools
40
-
];
35
+
build-system = [ setuptools ];
41
36
42
37
dependencies = [
43
38
future
···
52
47
vcrpy
53
48
];
54
49
55
-
pythonImportsCheck = [
56
-
"polyswarm_api"
57
-
];
50
+
pythonImportsCheck = [ "polyswarm_api" ];
58
51
59
52
meta = with lib; {
60
53
description = "Library to interface with the PolySwarm consumer APIs";