blob: 9f35fa169dc3f8e03ab351b9b1b6a398ec1c7996 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{
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 = {
description = "Python context manager for managing pid files";
mainProgram = "confight";
homepage = "https://github.com/avature/confight";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ mkg20001 ];
};
}
|