Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 17.09 510 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 name = pname + "-" + version; 5 pname = "pyext"; 6 version = "0.6"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "6c406cf71b991e1fc5a7f963d3a289525bce5e7ad1c43b697d9f5223185fcaef"; 11 }; 12 13 meta = with stdenv.lib; { 14 description = "Simple Python extensions."; 15 homepage = https://github.com/kirbyfan64/PyExt; 16 license = licenses.mit; 17 maintainers = with maintainers; [ edwtjo ]; 18 }; 19}