tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python310Packages.flow-record: 3.5 -> 3.7
Fabian Affolter
3 years ago
d5daa9ef
810c6124
+9
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
flow-record
default.nix
+9
-2
pkgs/development/python-modules/flow-record/default.nix
reviewed
···
8
8
, pythonOlder
9
9
, setuptools
10
10
, setuptools-scm
11
11
+
, wheel
11
12
, zstandard
12
13
}:
13
14
14
15
buildPythonPackage rec {
15
16
pname = "flow-record";
16
16
-
version = "3.5";
17
17
+
version = "3.7";
17
18
format = "pyproject";
18
19
19
20
disabled = pythonOlder "3.7";
···
23
22
owner = "fox-it";
24
23
repo = "flow.record";
25
24
rev = version;
26
26
-
hash = "sha256-hULz5pIqCKujVH3SpzFgzNM9R7WTtqAmuNOxG7VlUd0=";
25
25
+
hash = "sha256-bXI7q+unlrXvagKisAO4INfzeXlC4g918xmPmwMDCK8=";
27
26
};
28
27
29
28
SETUPTOOLS_SCM_PRETEND_VERSION = version;
···
31
30
nativeBuildInputs = [
32
31
setuptools
33
32
setuptools-scm
33
33
+
wheel
34
34
];
35
35
36
36
propagatedBuildInputs = [
···
59
57
disabledTestPaths = [
60
58
# Test requires rdump
61
59
"tests/test_rdump.py"
60
60
+
];
61
61
+
62
62
+
63
63
+
disabledTests = [
64
64
+
"test_rdump_fieldtype_path_json"
62
65
];
63
66
64
67
meta = with lib; {