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