nixpkgs/pkgs/development/python-modules/pywilight/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

40 lines
693 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, ifaddr
, requests
, pythonOlder
}:
buildPythonPackage rec {
pname = "pywilight";
version = "0.0.74";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-patCdQ7qLEfy+RpH9T/Fa8ubI7QF6OmLzFUokZc5syQ=";
};
propagatedBuildInputs = [
ifaddr
requests
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"pywilight"
];
meta = with lib; {
description = "Python API for WiLight device";
homepage = "https://github.com/leofig-rj/pywilight";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}