Files
nixpkgs/pkgs/development/python-modules/amcrest/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

64 lines
1.3 KiB
Nix

{
lib,
argcomplete,
buildPythonPackage,
fetchFromGitHub,
fetchpatch2,
httpx,
mock,
pytestCheckHook,
requests,
responses,
setuptools,
typing-extensions,
urllib3,
}:
buildPythonPackage rec {
pname = "amcrest";
version = "1.9.9";
pyproject = true;
src = fetchFromGitHub {
owner = "tchellomello";
repo = "python-amcrest";
tag = version;
hash = "sha256-UPxs/sL8ZpUf29fpQFnLY4tV7qSQIxm0UVSl6Pm1dAY=";
};
patches = [
(fetchpatch2 {
# https://github.com/tchellomello/python-amcrest/pull/240
name = "distutils-str2bool.patch";
url = "https://github.com/tchellomello/python-amcrest/commit/9cced67d643da6c33d92e85dde22e01b44fb0936.patch";
hash = "sha256-i9UeYo43Eiwz06KfWyVQUPTLCJLmMjjNcjA7ZQcPIqQ=";
})
];
build-system = [ setuptools ];
dependencies = [
argcomplete
httpx
requests
urllib3
typing-extensions
];
nativeCheckInputs = [
mock
pytestCheckHook
responses
];
pythonImportsCheck = [ "amcrest" ];
meta = {
description = "Python module for Amcrest and Dahua Cameras";
homepage = "https://github.com/tchellomello/python-amcrest";
changelog = "https://github.com/tchellomello/python-amcrest/releases/tag/${src.tag}";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ fab ];
};
}