nixpkgs/pkgs/development/python-modules/confight/default.nix
2023-12-20 20:40:25 +01:00

37 lines
654 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";
homepage = "https://github.com/avature/confight";
license = with licenses; [ mit ];
maintainers = with maintainers; [ mkg20001 ];
};
}