about summary refs log tree commit diff
path: root/pkgs/development/python-modules/helper/default.nix
blob: 15dadd0bf1146e9b221359a86449a55d1dae3f95 (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
24
{ stdenv, buildPythonPackage, fetchPypi, pyyaml, mock }:
 
buildPythonPackage rec {
  pname = "helper";
  version = "2.4.2";
  name = "${pname}-${version}";
  
  src = fetchPypi {
    inherit pname version;
    sha256 = "0p56dvjpaz9wnr0ik2wmvgqjf9ji180bhjky7q272l5dan94lgd6";
  };
  
  buildInputs = [ mock ];
  propagatedBuildInputs = [ pyyaml ];
  
  # No tests in the pypi tarball
  doCheck = false;
  
  meta = with stdenv.lib; {
    description = "Development library for quickly writing configurable applications and daemons";
    homepage = https://helper.readthedocs.org/;
    license = licenses.bsd3;
  };
}