summary refs log tree commit diff
path: root/pkgs/development/python-modules/kaptan/default.nix
blob: af24471d68deca79c529fbca6b027fbb1dcc6e37 (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
25
26
{ stdenv
, buildPythonPackage
, fetchPypi
, pyyaml
}:

buildPythonPackage rec {
  pname = "kaptan";
  version = "0.5.8";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1b8r86yyvdvyxd6f10mhkl6cr2jhxm80jjqr4zch96w9hs9rh5vq";
  };

  propagatedBuildInputs = [ pyyaml ];

  meta = with stdenv.lib; {
    description = "Configuration manager for python applications";
    homepage = https://emre.github.io/kaptan/;
    license = licenses.bsd3;
    platforms = platforms.linux;
    maintainers = with maintainers; [ jgeerds ];
  };

}