python3Packages.pysesame: init at 1.0.2
This commit is contained in:
parent
777751dd17
commit
2a859bfb6b
34
pkgs/development/python-modules/pysesame2/default.nix
Normal file
34
pkgs/development/python-modules/pysesame2/default.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
buildPythonPackage,
|
||||||
|
fetchPypi,
|
||||||
|
requests,
|
||||||
|
setuptools,
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pysesame2";
|
||||||
|
version = "1.0.2";
|
||||||
|
pyproject = true;
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
hash = "sha256-djKvmmYePdpcMt9bKkQyKsKAT5hhXMPJwC0EkfY8vWU=";
|
||||||
|
};
|
||||||
|
|
||||||
|
build-system = [ setuptools ];
|
||||||
|
|
||||||
|
dependencies = [ requests ];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "pysesame2" ];
|
||||||
|
|
||||||
|
# No tests in repository
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Python API for Sesame Smartlock made by CANDY HOUSE";
|
||||||
|
homepage = "https://github.com/yagami-cerberus/pysesame2";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
maintainers = [ lib.maintainers.jamiemagee ];
|
||||||
|
};
|
||||||
|
}
|
||||||
@ -13958,6 +13958,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
pyseries = callPackage ../development/python-modules/pyseries { };
|
pyseries = callPackage ../development/python-modules/pyseries { };
|
||||||
|
|
||||||
|
pysesame2 = callPackage ../development/python-modules/pysesame2 { };
|
||||||
|
|
||||||
pyseventeentrack = callPackage ../development/python-modules/pyseventeentrack { };
|
pyseventeentrack = callPackage ../development/python-modules/pyseventeentrack { };
|
||||||
|
|
||||||
pysftp = callPackage ../development/python-modules/pysftp { };
|
pysftp = callPackage ../development/python-modules/pysftp { };
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user