python3.pkgs.lml: init at 0.9.0

This commit is contained in:
Jan Tojnar
2020-08-27 17:06:12 +02:00
committed by Jon
parent 057b30b698
commit 7e14da6138
2 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, fetchPypi
, nose
, mock
}:
buildPythonPackage rec {
pname = "lml";
version = "0.0.9";
src = fetchPypi {
inherit pname version;
sha256 = "6luoF7Styen1whclzSR1+RKTO34t/fB5Ku2AB3FU9j8=";
};
checkInputs = [
nose
mock
];
checkPhase = "nosetests";
meta = {
description = "Load me later. A lazy plugin management system for Python";
homepage = "http://lml.readthedocs.io/";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ jtojnar ];
};
}