Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 six, 6 pythonOlder, 7}: 8 9buildPythonPackage rec { 10 pname = "derpconf"; 11 version = "0.8.4"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.9"; 15 16 src = fetchPypi { 17 inherit pname version; 18 hash = "sha256-66MOqcWIiqJrORJDgAH5iUblHyqJvuf9DIBN56XjKwU="; 19 }; 20 21 propagatedBuildInputs = [ six ]; 22 23 pythonImportsCheck = [ "derpconf" ]; 24 25 meta = with lib; { 26 description = "Module to abstract loading configuration files for your app"; 27 homepage = "https://github.com/globocom/derpconf"; 28 changelog = "https://github.com/globocom/derpconf/releases/tag/${version}"; 29 license = licenses.mit; 30 maintainers = [ ]; 31 }; 32}