depot/third_party/nixpkgs/pkgs/development/python-modules/vsure/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

36 lines
667 B
Nix

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