Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 22 lines 466 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "inifile"; 8 version = "0.3"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "0zgd53czc1irwx6b5zip8xlmyfr40hz2pd498d8yv61znj6lm16h"; 13 }; 14 15 meta = with stdenv.lib; { 16 description = "A small INI library for Python"; 17 homepage = "https://github.com/mitsuhiko/python-inifile"; 18 license = licenses.bsd0; 19 maintainers = with maintainers; [ vozz ]; 20 }; 21 22}