aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/lml/default.nix
blob: c1320eef04cefa3094c79484d8e544b71348b483 (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.0.9";

  src = fetchPypi {
    inherit pname version;
    sha256 = "6luoF7Styen1whclzSR1+RKTO34t/fB5Ku2AB3FU9j8=";
  };

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