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

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

43 lines
806 B
Nix
Raw Normal View History

2021-09-27 06:48:51 +00:00
{ lib
, buildPythonPackage
, colorlog
, pyyaml
2021-09-27 06:48:51 +00:00
, fetchPypi
, pythonOlder
, requests
}:
buildPythonPackage rec {
pname = "lupupy";
version = "0.3.0";
2021-09-27 06:48:51 +00:00
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-g2EEyPhsQZ+VKP/kSjZdQ9ns0NlptH8l2h0vTTLpF54=";
2021-09-27 06:48:51 +00:00
};
propagatedBuildInputs = [
colorlog
pyyaml
2021-09-27 06:48:51 +00:00
requests
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [
"lupupy"
];
2021-09-27 06:48:51 +00:00
meta = with lib; {
description = "Python module to control Lupusec alarm control panels";
homepage = "https://github.com/majuss/lupupy";
changelog = "https://github.com/majuss/lupupy/releases/tag/v${version}";
2021-09-27 06:48:51 +00:00
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}