python3Packages.pysesame: init at 1.0.2 (#434603)
This commit is contained in:
commit
dffc61c0de
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 ];
|
||||
};
|
||||
}
|
@ -5304,7 +5304,8 @@
|
||||
];
|
||||
"sesame" =
|
||||
ps: with ps; [
|
||||
]; # missing inputs: pysesame2
|
||||
pysesame2
|
||||
];
|
||||
"seven_segments" =
|
||||
ps: with ps; [
|
||||
pillow
|
||||
|
@ -13960,6 +13960,8 @@ self: super: with self; {
|
||||
|
||||
pyseries = callPackage ../development/python-modules/pyseries { };
|
||||
|
||||
pysesame2 = callPackage ../development/python-modules/pysesame2 { };
|
||||
|
||||
pyseventeentrack = callPackage ../development/python-modules/pyseventeentrack { };
|
||||
|
||||
pysftp = callPackage ../development/python-modules/pysftp { };
|
||||
|
Loading…
x
Reference in New Issue
Block a user