10 buildPythonPackage rec {
16 inherit pname version;
17 hash = "sha256-EBMwpE/e3oiFhvMBC9FFwOxIpIBrxWQp+lSHpndAIfg=";
21 sed -i "s/==.*//g" requirements/test.txt
23 substituteInPlace requirements/base.txt --replace 'PyYAML>=3.13,<6' 'PyYAML>=3.13'
26 nativeBuildInputs = [ setuptools ];
28 propagatedBuildInputs = [ pyyaml ];
30 nativeCheckInputs = [ pytestCheckHook ];
33 description = "Configuration manager for python applications";
34 mainProgram = "kaptan";
35 homepage = "https://kaptan.readthedocs.io/";
36 license = licenses.bsd3;