ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
37 lines
684 B
Nix
37 lines
684 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 ];
|
|
};
|
|
}
|