forked from mirrors/nixpkgs
50 lines
975 B
Nix
50 lines
975 B
Nix
{ lib
|
|
, aiohttp
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, poetry-core
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "garages-amsterdam";
|
|
version = "4.0.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "klaasnicolaas";
|
|
repo = "garages_amsterdam";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-3YSCf5sUnq2+Bt7LA30XeIMg4zsaPF3K5SVzGZ68SbY=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace '"0.0.0"' '"${version}"'
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
];
|
|
|
|
# The only test requires network access
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"garages_amsterdam"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python client for getting garage occupancy in Amsterdam";
|
|
homepage = "https://github.com/klaasnicolaas/python-garages-amsterdam";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|