Merge pull request #217465 from fabaff/axis-bump

python310Packages.axis: 46 -> 47
This commit is contained in:
Nick Cao 2023-02-22 09:01:13 +08:00 committed by GitHub
commit 90c9b2e635
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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";