depot/third_party/nixpkgs/pkgs/development/python-modules/vsure/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

40 lines
826 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
click,
pythonOlder,
requests,
}:
buildPythonPackage rec {
pname = "vsure";
version = "2.6.7";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-/eVFa1BTFbvFTAt48Bv+bjsV7f2eVSuKARJQVxDqU9s=";
};
propagatedBuildInputs = [
click
requests
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "verisure" ];
meta = with lib; {
description = "Python library for working with verisure devices";
mainProgram = "vsure";
homepage = "https://github.com/persandstrom/python-verisure";
changelog = "https://github.com/persandstrom/python-verisure#version-history";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}