Skip to content

Commit b4d1b44

Browse files
committed
chore(deps): add jefferson dependency in Nix files.
1 parent e59b449 commit b4d1b44

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

nix/jefferson/default.nix

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{ lib
2+
, buildPythonPackage
3+
, fetchPypi
4+
, python3
5+
, click
6+
, cstruct
7+
, lzallright
8+
}:
9+
10+
buildPythonPackage rec {
11+
pname = "jefferson";
12+
version = "0.4.4";
13+
format = "pyproject";
14+
15+
src = fetchPypi {
16+
inherit pname version;
17+
sha256 = "sha256-RHEXbKRQWTyPWIzSRLwW82u/TsDgiL7L5o+cUWgLLk0=";
18+
};
19+
20+
nativeBuildInputs = with python3.pkgs; [
21+
poetry-core
22+
];
23+
24+
propagatedBuildInputs = [
25+
click
26+
cstruct
27+
lzallright
28+
];
29+
30+
pythonImportsCheck = [ "jefferson" ];
31+
32+
}

nix/python/default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ let
77
pyperscan = pyperscan.packages.${system}.default.vectorscan;
88
unblob-native = unblob-native.packages.${system}.default;
99
treelib = final.callPackage ../treelib { };
10+
jefferson = final.callPackage ../jefferson { };
1011
};
1112
};
1213
in

0 commit comments

Comments
 (0)