nixpkgs/pkgs/development/python-modules/lml/default.nix

32 lines
585 B
Nix
Raw Normal View History

2020-08-27 16:06:12 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
2020-08-27 16:06:12 +01:00
, mock
}:
buildPythonPackage rec {
pname = "lml";
2020-11-29 14:04:33 +00:00
version = "0.1.0";
2020-08-27 16:06:12 +01:00
src = fetchPypi {
inherit pname version;
2020-11-29 14:04:33 +00:00
sha256 = "57a085a29bb7991d70d41c6c3144c560a8e35b4c1030ffb36d85fa058773bcc5";
2020-08-27 16:06:12 +01:00
};
checkInputs = [
pytestCheckHook
2020-08-27 16:06:12 +01:00
mock
];
# Tests broken.
doCheck = false;
2020-08-27 16:06:12 +01:00
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 ];
};
}