Files
nixpkgs/pkgs/development/python-modules/confight/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
679 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
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 ];
};
}