ubi_reader: init

This commit is contained in:
Luke Granger-Brown 2022-03-13 17:32:59 +00:00
parent c41914e274
commit b29a330382
2 changed files with 24 additions and 0 deletions

View file

@ -32,6 +32,7 @@
hg-evolve
]);
netbox = pkgs.python3Packages.callPackage ./netbox {};
ubi_reader = pkgs.python3Packages.callPackage ./ubi_reader {};
prometheus-bird-exporter-lfty = pkgs.callPackage ./prometheus-bird-exporter-lfty.nix {};
eapol-test = pkgs.callPackage ./eapol-test.nix {};
datez = pkgs.callPackage ./datez {

View file

@ -0,0 +1,23 @@
{ buildPythonApplication
, fetchFromGitHub
, lib
, python-lzo
}:
buildPythonApplication rec {
pname = "ubi_reader";
version = "0.7.2-master";
src = fetchFromGitHub {
owner = "jrspruitt";
repo = pname;
rev = "v${version}";
sha256 = "1crggg4f8jm9bs6x354nacs8c714mxq60aajya0izxk5b7w411dn";
};
propagatedBuildInputs = [
python-lzo
];
doCheck = false;
}