biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pydoods / default.nix
blobe74d54245d18ef25901761a4341df3cb57527892
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   requests,
7 }:
9 buildPythonPackage rec {
10   pname = "pydoods";
11   version = "1.0.2";
12   format = "setuptools";
14   disabled = pythonOlder "3.6";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "1brpcfj1iy9mhf2inla4gi681zlh7g4qvhr6vrprk6r693glpn3x";
19   };
21   propagatedBuildInputs = [ requests ];
23   # Project has no tests
24   doCheck = false;
26   pythonImportsCheck = [ "pydoods" ];
28   meta = with lib; {
29     description = "Python wrapper for the DOODS service";
30     homepage = "https://github.com/snowzach/pydoods";
31     license = with licenses; [ mit ];
32     maintainers = with maintainers; [ fab ];
33   };