python3Packages.netbox-inventory: init at 1.4.2
This commit is contained in:
parent
c5921e5c11
commit
7927b6939c
|
@ -8,6 +8,8 @@ rec {
|
||||||
pythonPackagesExtensions = prev.pythonPackagesExtensions ++ (prev.lib.singleton (final: prev: {
|
pythonPackagesExtensions = prev.pythonPackagesExtensions ++ (prev.lib.singleton (final: prev: {
|
||||||
enlighten = callPythonPackage ./python-modules/enlighten { };
|
enlighten = callPythonPackage ./python-modules/enlighten { };
|
||||||
|
|
||||||
|
netbox-inventory = callPythonPackage ./python-modules/netbox-inventory { };
|
||||||
|
|
||||||
prefixed = callPythonPackage ./python-modules/prefixed { };
|
prefixed = callPythonPackage ./python-modules/prefixed { };
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
|
23
python-modules/netbox-inventory/default.nix
Normal file
23
python-modules/netbox-inventory/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{ lib, buildPythonPackage, fetchPypi, setuptools }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "netbox-inventory";
|
||||||
|
version = "1.4.2";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "sha256-mdfK8FQ8srpLebwX2YEA/kdfDVU1xDbyYnq2gUqUcws=";
|
||||||
|
};
|
||||||
|
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ setuptools ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Manage your hardware inventory in NetBox";
|
||||||
|
homepage = "https://github.com/ArnesSI/netbox-inventory";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ sbruder ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue