Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / python-wink / default.nix
blobfa0dc670133ee9e90bd6a0fea7cb5194ce3e39c7
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , requests
5 }:
7 buildPythonPackage rec {
8   pname = "python-wink";
9   version = "1.10.5";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "1r6qabnqxyy3llnj10z60d4w9pg2zabysl3l7znpy1adss4ywxl0";
14   };
16   propagatedBuildInputs = [ requests ];
18   # Project has no tests
19   doCheck = false;
20   pythonImportsCheck = [ "pywink" ];
22   meta = with lib; {
23     description = "Python implementation of the Wink API";
24     homepage = "https://github.com/python-wink/python-wink";
25     license = with licenses; [ mit ];
26     maintainers = with maintainers; [ fab ];
27   };