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