summary refs log tree commit diff
path: root/pkgs/development/python-modules/helper/default.nix
blob: 4c7ff0c3878f38cfc85bdf3c255c53ce515c7ad7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, stdenv, buildPythonPackage, fetchPypi, pyyaml, mock }:

buildPythonPackage rec {
  pname = "helper";
  version = "2.4.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0p56dvjpaz9wnr0ik2wmvgqjf9ji180bhjky7q272l5dan94lgd6";
  };

  checkInputs = [ mock ];
  propagatedBuildInputs = [ pyyaml ];

  # No tests in the pypi tarball
  doCheck = false;

  meta = with lib; {
    description = "Development library for quickly writing configurable applications and daemons";
    homepage = "https://helper.readthedocs.org/";
    license = licenses.bsd3;
  };
}