Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / lml / default.nix
blob4ad69e15a4292f4a134427655fcda2f404f070dd
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , mock
6 }:
8 buildPythonPackage rec {
9   pname = "lml";
10   version = "0.1.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "57a085a29bb7991d70d41c6c3144c560a8e35b4c1030ffb36d85fa058773bcc5";
16   };
18   nativeCheckInputs = [
19     pytestCheckHook
20     mock
21   ];
23   # Tests broken.
24   doCheck = false;
26   meta = {
27     description = "Load me later. A lazy plugin management system for Python";
28     homepage = "http://lml.readthedocs.io/";
29     license = lib.licenses.bsd3;
30     maintainers = with lib.maintainers; [ ];
31   };