Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 568 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, pyyaml 5}: 6 7buildPythonPackage rec { 8 pname = "kaptan"; 9 version = "0.5.11"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "8403d6e48200c3f49cb6d6b3dcb5898aa5ab9d820831655bf9a2403e00cd4207"; 14 }; 15 16 propagatedBuildInputs = [ pyyaml ]; 17 18 # No tests in archive 19 doCheck = false; 20 21 meta = with stdenv.lib; { 22 description = "Configuration manager for python applications"; 23 homepage = https://kaptan.readthedocs.io/; 24 license = licenses.bsd3; 25 maintainers = with maintainers; [ jgeerds ]; 26 }; 27 28}