Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 29 lines 644 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, six 5, enum34 6}: 7 8buildPythonPackage rec { 9 pname = "gin-config"; 10 version = "0.4.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "9499c060e1faa340959fc4ada7fe53f643d6f8996a80262b28a082c1ef6849de"; 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}