Merge pull request #186763 from yaxitech/dinghy
This commit is contained in:
commit
e85a87766a
2 changed files with 48 additions and 0 deletions
46
pkgs/development/python-modules/dinghy/default.nix
Normal file
46
pkgs/development/python-modules/dinghy/default.nix
Normal file
|
@ -0,0 +1,46 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pytestCheckHook
|
||||
, aiofiles
|
||||
, aiohttp
|
||||
, click-log
|
||||
, emoji
|
||||
, glom
|
||||
, jinja2
|
||||
, pyyaml
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "dinghy";
|
||||
version = "0.13.2";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nedbat";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-uRiWcrs3xIb6zxNg0d6/+NCqnEgadHSTLpS53CoZ5so=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiofiles
|
||||
aiohttp
|
||||
click-log
|
||||
emoji
|
||||
glom
|
||||
jinja2
|
||||
pyyaml
|
||||
];
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [ "dinghy.cli" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A GitHub activity digest tool";
|
||||
homepage = "https://github.com/nedbat/dinghy";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ trundle veehaitch ];
|
||||
};
|
||||
}
|
|
@ -2402,6 +2402,8 @@ in {
|
|||
|
||||
dingz = callPackage ../development/python-modules/dingz { };
|
||||
|
||||
dinghy = callPackage ../development/python-modules/dinghy { };
|
||||
|
||||
diofant = callPackage ../development/python-modules/diofant { };
|
||||
|
||||
dipy = callPackage ../development/python-modules/dipy { };
|
||||
|
|
Loading…
Reference in a new issue