python312Packages.llm-gguf: init at 0.2 (#364926)
[NixPkgs.git] / pkgs / development / python-modules / python-wink / default.nix
blob464daf8ebd0203e9f462040dcf062b0b7d6ecafd
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   requests,
6 }:
8 buildPythonPackage rec {
9   pname = "python-wink";
10   version = "1.10.5";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "1r6qabnqxyy3llnj10z60d4w9pg2zabysl3l7znpy1adss4ywxl0";
16   };
18   propagatedBuildInputs = [ requests ];
20   # Project has no tests
21   doCheck = false;
22   pythonImportsCheck = [ "pywink" ];
24   meta = with lib; {
25     description = "Python implementation of the Wink API";
26     homepage = "https://github.com/python-wink/python-wink";
27     license = with licenses; [ mit ];
28     maintainers = with maintainers; [ fab ];
29   };