fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
34 lines
679 B
Nix
34 lines
679 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
toml,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "confight";
|
|
version = "2.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-iodoexnh9tG4dgkjDXCUzWRFDhRlJ3HRgaNhxG2lwPY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [ toml ];
|
|
|
|
pythonImportsCheck = [ "confight" ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Python context manager for managing pid files";
|
|
mainProgram = "confight";
|
|
homepage = "https://github.com/avature/confight";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ mkg20001 ];
|
|
};
|
|
}
|