mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-03 11:33:31 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
45 lines
733 B
Nix
45 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 = [ ];
|
|
};
|
|
}
|