Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 667 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, click 5, requests 6}: 7 8buildPythonPackage rec { 9 pname = "vsure"; 10 version = "2.6.1"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-D6Q76L1BVx5hpFSShP1rUOmgTogEO+6Jj5x8GaepC+c="; 16 }; 17 18 propagatedBuildInputs = [ 19 click 20 requests 21 ]; 22 23 # Project has no tests 24 doCheck = false; 25 26 pythonImportsCheck = [ 27 "verisure" 28 ]; 29 30 meta = with lib; { 31 description = "Python library for working with verisure devices"; 32 homepage = "https://github.com/persandstrom/python-verisure"; 33 license = with licenses; [ mit ]; 34 maintainers = with maintainers; [ fab ]; 35 }; 36}