python3.pkgs.delorean: init at 1.0.0
This commit is contained in:
parent
dd78ce1c53
commit
09031aa626
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in New Issue