nixpkgs/pkgs/development/python-modules/moonraker-api/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

50 lines
1.0 KiB
Nix

{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, pytest-aiohttp
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "moonraker-api";
version = "2.0.5";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "cmroche";
repo = pname;
rev = "v${version}";
hash = "sha256-PgFsXmdAmHXK0wZ6xLTu94RdME1L2H1Mb6V+qFlGXSk=";
};
postPatch = ''
# see comment on https://github.com/cmroche/moonraker-api/commit/e5ca8ab60d2839e150a81182fbe65255d84b4e4e
substituteInPlace setup.py \
--replace 'name="moonraker-api",' 'name="moonraker-api",version="${version}",'
'';
propagatedBuildInputs = [
aiohttp
];
nativeCheckInputs = [
pytest-aiohttp
pytestCheckHook
];
pythonImportsCheck = [
"moonraker_api"
];
meta = with lib; {
description = "Python API for the Moonraker API";
homepage = "https://github.com/cmroche/moonraker-api";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};
}