python3.pkgs.delorean: init at 1.0.0

master
Robin Gloster 2021-05-08 18:00:21 -05:00
parent dd78ce1c53
commit 09031aa626
No known key found for this signature in database
GPG Key ID: D5C458DF6DD97EDF
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ lib
, buildPythonPackage
, fetchPypi
, Babel
, humanize
, python-dateutil
, tzlocal
}:
buildPythonPackage rec {
pname = "Delorean";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "0d31ay7yq2w7xz7m3ssk5phjbm64b2k8hmgcif22719k29p7hrzy";
};
propagatedBuildInputs = [ Babel humanize python-dateutil tzlocal ];
pythonImportsCheck = [ "delorean" ];
# test data not included
doCheck = false;
meta = with lib; {
description = "Delorean: Time Travel Made Easy";
homepage = "https://github.com/myusuf3/delorean";
license = licenses.mit;
maintainers = with maintainers; [ globin ];
};
}

View File

@ -1759,6 +1759,8 @@ in {
delegator-py = callPackage ../development/python-modules/delegator-py { };
delorean = callPackage ../development/python-modules/delorean { };
deltachat = callPackage ../development/python-modules/deltachat { };
deluge-client = callPackage ../development/python-modules/deluge-client { };