nix-files/pkgs/python-packages/depthcharge-tools/default.nix

31 lines
693 B
Nix

{ 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 ];
};
}