Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 29 lines 642 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, six 5, enum34 6}: 7 8buildPythonPackage rec { 9 pname = "gin-config"; 10 version = "0.2.1"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "6305325d5afe470fa5a7130883035e51950478b317750205a1532e5413d4ba4c"; 15 16 }; 17 18 propagatedBuildInputs = [ six enum34 ]; 19 20 # PyPI archive does not ship with tests 21 doCheck= false; 22 23 meta = with lib; { 24 homepage = https://github.com/google/gin-config; 25 description = "Gin provides a lightweight configuration framework for Python, based on dependency injection."; 26 license = licenses.asl20; 27 maintainers = with maintainers; [ jethro ]; 28 }; 29}