python3.pkgs.lml: init at 0.9.0
This commit is contained in:
parent
057b30b698
commit
7e14da6138
30
pkgs/development/python-modules/lml/default.nix
Normal file
30
pkgs/development/python-modules/lml/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -4693,6 +4693,8 @@ in {
|
||||
inherit (pkgs) fuse pkgconfig; # use "real" fuse and pkgconfig, not the python modules
|
||||
};
|
||||
|
||||
lml = callPackage ../development/python-modules/lml { };
|
||||
|
||||
locustio = callPackage ../development/python-modules/locustio { };
|
||||
|
||||
llvmlite = callPackage ../development/python-modules/llvmlite {
|
||||
|
Loading…
Reference in New Issue
Block a user