nixpkgs/pkgs/development/python-modules/axis/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
965 B
Nix
Raw Normal View History

2021-01-16 12:44:17 +00:00
{ lib
, async-timeout
2021-01-16 12:44:17 +00:00
, attrs
, buildPythonPackage
, fetchFromGitHub
, httpx
, orjson
2021-01-16 12:44:17 +00:00
, packaging
, pythonOlder
2021-01-16 12:44:17 +00:00
, xmltodict
}:
buildPythonPackage rec {
pname = "axis";
version = "47";
format = "setuptools";
2021-01-16 12:44:17 +00:00
disabled = pythonOlder "3.7";
2021-01-16 12:44:17 +00:00
src = fetchFromGitHub {
owner = "Kane610";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-a8YvFX3IcbX4Sm75GzGv7vIyMmSHxwGejyq6nE7foOE=";
2021-01-16 12:44:17 +00:00
};
propagatedBuildInputs = [
async-timeout
2021-01-16 12:44:17 +00:00
attrs
httpx
orjson
2021-01-16 12:44:17 +00:00
packaging
xmltodict
];
# Tests requires a server on localhost
doCheck = false;
pythonImportsCheck = [
"axis"
];
2021-01-16 12:44:17 +00:00
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}";
2021-01-16 12:44:17 +00:00
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}