aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/lml/default.nix
blob: cdf1d46af73e320e5b4eec099421327a9f97b8c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib
, buildPythonPackage
, fetchPypi
, nose
, mock
}:

buildPythonPackage rec {
  pname = "lml";
  version = "0.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "57a085a29bb7991d70d41c6c3144c560a8e35b4c1030ffb36d85fa058773bcc5";
  };

  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 ];
  };
}