biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / tmb / default.nix
blob9c97153d9d22dbc7d89c4ab50aeebab3d40ce701
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   requests,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "tmb";
11   version = "0.1.5";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "alemuro";
18     repo = pname;
19     rev = version;
20     hash = "sha256-XuRhRmeTXAplb14UwISyzaqEIrFeg8/aCdMxUccMUos=";
21   };
23   VERSION = version;
25   propagatedBuildInputs = [ requests ];
27   pythonImportsCheck = [ "tmb" ];
29   # Project has no tests
30   doCheck = false;
32   meta = with lib; {
33     description = "Python library that interacts with TMB API";
34     homepage = "https://github.com/alemuro/tmb";
35     license = with licenses; [ mit ];
36     maintainers = with maintainers; [ fab ];
37   };