Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 20 lines 586 B view raw
1{ stdenv, fetchPypi, buildPythonPackage, agate, sqlalchemy }: 2 3buildPythonPackage rec { 4 pname = "agate-sql"; 5 version = "0.5.4"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "9277490ba8b8e7c747a9ae3671f52fe486784b48d4a14e78ca197fb0e36f281b"; 10 }; 11 12 propagatedBuildInputs = [ agate sqlalchemy ]; 13 14 meta = with stdenv.lib; { 15 description = "Adds SQL read/write support to agate."; 16 homepage = https://github.com/wireservice/agate-sql; 17 license = with licenses; [ mit ]; 18 maintainers = with maintainers; [ vrthra ]; 19 }; 20}