biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / lml / default.nix
blob6bb69be09fcecd8d8b2ab4326da4743005fd43dc
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytestCheckHook,
6   mock,
7 }:
9 buildPythonPackage rec {
10   pname = "lml";
11   version = "0.1.0";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "57a085a29bb7991d70d41c6c3144c560a8e35b4c1030ffb36d85fa058773bcc5";
17   };
19   nativeCheckInputs = [
20     pytestCheckHook
21     mock
22   ];
24   # Tests broken.
25   doCheck = false;
27   meta = {
28     description = "Load me later. A lazy plugin management system for Python";
29     homepage = "http://lml.readthedocs.io/";
30     license = lib.licenses.bsd3;
31     maintainers = [ ];
32   };