depthcharge-tools: init at 0.6.2

This commit is contained in:
Colin 2024-06-07 07:22:18 +00:00
parent 8105e00b39
commit c18554dfbd
2 changed files with 31 additions and 0 deletions

View File

@ -1,5 +1,6 @@
{ callPackage, pkgs }:
{
depthcharge-tools = callPackage ./depthcharge-tools { };
feedsearch-crawler = callPackage ./feedsearch-crawler { };
pa-dlna = callPackage ./pa-dlna { };
pyln-bolt7 = callPackage ./pyln-bolt7 { };

View File

@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
}: buildPythonPackage rec {
pname = "depthcharge-tools";
version = "0.6.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "alpernebbi";
repo = "depthcharge-tools";
rev = "v${version}";
hash = "sha256-3xPRNDUXLOwYy8quMfYSiBfzQl4peauTloqtZBGbvlw=";
};
propagatedBuildInputs = [
setuptools #< needs `pkg_resources` at runtime
];
pythonImportsCheck = [
"depthcharge_tools"
];
meta = with lib; {
homepage = "https://github.com/alpernebbi/depthcharge-tools";
description = "Tools to manage the Chrome OS bootloader";
maintainers = with maintainers; [ colinsane ];
};
}