ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pypoint / default.nix
blobbd4a121d35be68d6e99cdc65faff1140d60e80c3
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , authlib
5 , httpx
6 }:
8 buildPythonPackage rec {
9   pname = "pypoint";
10   version = "2.3.0";
11   format = "setuptools";
13   src = fetchFromGitHub {
14     owner = "fredrike";
15     repo = "pypoint";
16     rev = "v${version}";
17     hash = "sha256-609Zme9IUl8eHNxzrYsRAg7bgZho/OklGM7oI+imyZQ=";
18   };
20   propagatedBuildInputs = [
21     authlib
22     httpx
23   ];
25   # upstream has no tests
26   doCheck = false;
28   pythonImportsCheck = [
29     "pypoint"
30   ];
32   meta = with lib; {
33     description = "Python module for communicating with Minut Point";
34     homepage = "https://github.com/fredrike/pypoint";
35     license = licenses.mit;
36     maintainers = with maintainers; [ dotlambda ];
37   };