Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 477 B view raw
1{ lib, buildPythonPackage, fetchPypi, six }: 2 3buildPythonPackage rec { 4 pname = "derpconf"; 5 version = "0.8.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1bb152d8a1cf5c2a6d629bf29acd4af0c00811339642fc0a56172b0a83b31a15"; 10 }; 11 12 propagatedBuildInputs = [ six ]; 13 14 meta = with lib; { 15 description = "derpconf abstracts loading configuration files for your app"; 16 homepage = "https://github.com/globocom/derpconf"; 17 license = licenses.mit; 18 }; 19}