python3Packages.vsure: init at 1.6.1
This commit is contained in:
parent
f1d3b04c04
commit
5cca230726
28
pkgs/development/python-modules/vsure/default.nix
Normal file
28
pkgs/development/python-modules/vsure/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, requests
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "vsure";
|
||||
version = "1.6.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1lsr0wl1dwbzpn68ww348yk6v42bw89nrghz5gjsimrr428zw6qn";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ 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 ];
|
||||
};
|
||||
}
|
@ -8042,6 +8042,8 @@ in {
|
||||
|
||||
vsts-cd-manager = callPackage ../development/python-modules/vsts-cd-manager { };
|
||||
|
||||
vsure = callPackage ../development/python-modules/vsure { };
|
||||
|
||||
vtk = self.vtk_7;
|
||||
vtk_7 = toPythonModule (pkgs.vtk_7.override {
|
||||
pythonInterpreter = python;
|
||||
|
Loading…
Reference in New Issue
Block a user