depot/third_party/nixpkgs/pkgs/development/python-modules/agate-sql/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

44 lines
733 B
Nix

{
lib,
buildPythonPackage,
isPy27,
fetchPypi,
agate,
sqlalchemy,
crate,
pytestCheckHook,
geojson,
}:
buildPythonPackage rec {
pname = "agate-sql";
version = "0.7.2";
format = "setuptools";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
hash = "sha256-mxswKEpXP9QWdZQ3Jz3MXIECK98vrLJLSqAppir9U7A=";
};
propagatedBuildInputs = [
agate
sqlalchemy
];
nativeCheckInputs = [
crate
geojson
pytestCheckHook
];
pythonImportsCheck = [ "agatesql" ];
meta = with lib; {
description = "Adds SQL read/write support to agate";
homepage = "https://github.com/wireservice/agate-sql";
license = with licenses; [ mit ];
maintainers = [ ];
};
}