mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
aed5c11a9d
Diff: https://github.com/Kane610/axis/compare/refs/tags/v47...v48 Changelog: https://github.com/Kane610/axis/releases/tag/v48
51 lines
965 B
Nix
51 lines
965 B
Nix
{ lib
|
|
, async-timeout
|
|
, attrs
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, httpx
|
|
, orjson
|
|
, packaging
|
|
, pythonOlder
|
|
, xmltodict
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "axis";
|
|
version = "48";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Kane610";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-/Iz1F40Y00bgJUvNrkPGyA8Kkch92Kijeg8TQ8mostM=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
async-timeout
|
|
attrs
|
|
httpx
|
|
orjson
|
|
packaging
|
|
xmltodict
|
|
];
|
|
|
|
# Tests requires a server on localhost
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"axis"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python library for communicating with devices from Axis Communications";
|
|
homepage = "https://github.com/Kane610/axis";
|
|
changelog = "https://github.com/Kane610/axis/releases/tag/v${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|