Skip to content

Commit 2a859bf

Browse files
committed
python3Packages.pysesame: init at 1.0.2
1 parent 777751d commit 2a859bf

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
lib,
3+
buildPythonPackage,
4+
fetchPypi,
5+
requests,
6+
setuptools,
7+
}:
8+
9+
buildPythonPackage rec {
10+
pname = "pysesame2";
11+
version = "1.0.2";
12+
pyproject = true;
13+
14+
src = fetchPypi {
15+
inherit pname version;
16+
hash = "sha256-djKvmmYePdpcMt9bKkQyKsKAT5hhXMPJwC0EkfY8vWU=";
17+
};
18+
19+
build-system = [ setuptools ];
20+
21+
dependencies = [ requests ];
22+
23+
pythonImportsCheck = [ "pysesame2" ];
24+
25+
# No tests in repository
26+
doCheck = false;
27+
28+
meta = {
29+
description = "Python API for Sesame Smartlock made by CANDY HOUSE";
30+
homepage = "https://github.com/yagami-cerberus/pysesame2";
31+
license = lib.licenses.mit;
32+
maintainers = [ lib.maintainers.jamiemagee ];
33+
};
34+
}

pkgs/top-level/python-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13958,6 +13958,8 @@ self: super: with self; {
1395813958

1395913959
pyseries = callPackage ../development/python-modules/pyseries { };
1396013960

13961+
pysesame2 = callPackage ../development/python-modules/pysesame2 { };
13962+
1396113963
pyseventeentrack = callPackage ../development/python-modules/pyseventeentrack { };
1396213964

1396313965
pysftp = callPackage ../development/python-modules/pysftp { };

0 commit comments

Comments
 (0)