python310Packages.axis: 46 -> 47

Diff: https://github.com/Kane610/axis/compare/refs/tags/v46...v47

Changelog: https://github.com/Kane610/axis/releases/tag/v47
This commit is contained in:
Fabian Affolter
2023-02-21 09:01:24 +01:00
parent 4375ddbf1f
commit 0f2d172802
@@ -6,19 +6,22 @@
, httpx
, orjson
, packaging
, pythonOlder
, xmltodict
}:
buildPythonPackage rec {
pname = "axis";
version = "46";
version = "47";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "Kane610";
repo = pname;
rev = "v${version}";
hash = "sha256-alhezwRPag+6JoC4zbusWdxFyZQ2dZl04Uj1PkiN4qo=";
rev = "refs/tags/v${version}";
hash = "sha256-a8YvFX3IcbX4Sm75GzGv7vIyMmSHxwGejyq6nE7foOE=";
};
propagatedBuildInputs = [
@@ -32,7 +35,10 @@ buildPythonPackage rec {
# Tests requires a server on localhost
doCheck = false;
pythonImportsCheck = [ "axis" ];
pythonImportsCheck = [
"axis"
];
meta = with lib; {
description = "Python library for communicating with devices from Axis Communications";