python3Packages.tmb: init at 0.1.0
This commit is contained in:
parent
8fcb5db84c
commit
7f836a9d5a
30
pkgs/development/python-modules/tmb/default.nix
Normal file
30
pkgs/development/python-modules/tmb/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, requests
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "tmb";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "alemuro";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0fmwm9dz2mik9zni50wrnw7k9ld4l4w3p92aws6jcrdfxfi7aq7p";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ requests ];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "tmb" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/alemuro/tmb";
|
||||
description = "Python library that interacts with TMB API";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -7604,6 +7604,8 @@ in {
|
||||
|
||||
tls-parser = callPackage ../development/python-modules/tls-parser { };
|
||||
|
||||
tmb = callPackage ../development/python-modules/tmb { };
|
||||
|
||||
tmdb3 = callPackage ../development/python-modules/tmdb3 { };
|
||||
|
||||
todoist = callPackage ../development/python-modules/todoist { };
|
||||
|
Loading…
Reference in New Issue
Block a user