Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / lml / default.nix
blobe1d900ba65746badd7c7b20233037430cb65a9fb
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , mock
6 }:
8 buildPythonPackage rec {
9   pname = "lml";
10   version = "0.1.0";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "57a085a29bb7991d70d41c6c3144c560a8e35b4c1030ffb36d85fa058773bcc5";
15   };
17   nativeCheckInputs = [
18     pytestCheckHook
19     mock
20   ];
22   # Tests broken.
23   doCheck = false;
25   meta = {
26     description = "Load me later. A lazy plugin management system for Python";
27     homepage = "http://lml.readthedocs.io/";
28     license = lib.licenses.bsd3;
29     maintainers = with lib.maintainers; [ ];
30   };