tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pythonPackages.kaptan: init at 0.5.8
Jascha Geerds
9 years ago
053df607
53c1722c
+19
1 changed file
expand all
collapse all
unified
split
pkgs
top-level
python-packages.nix
+19
pkgs/top-level/python-packages.nix
···
9408
};
9409
};
9410
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
9411
9412
keepalive = buildPythonPackage rec {
9413
name = "keepalive-${version}";
···
9408
};
9409
};
9410
9411
+
kaptan = buildPythonPackage rec {
9412
+
name = "kaptan-${version}";
9413
+
version = "0.5.8";
9414
+
9415
+
src = pkgs.fetchurl {
9416
+
url = "mirror://pypi/k/kaptan/${name}.tar.gz";
9417
+
sha256 = "1b8r86yyvdvyxd6f10mhkl6cr2jhxm80jjqr4zch96w9hs9rh5vq";
9418
+
};
9419
+
9420
+
propagatedBuildInputs = with self; [ pyyaml ];
9421
+
9422
+
meta = with stdenv.lib; {
9423
+
description = "Configuration manager for python applications";
9424
+
homepage = https://emre.github.io/kaptan/;
9425
+
license = licenses.bsd3;
9426
+
platforms = platforms.linux;
9427
+
maintainers = with maintainers; [ jgeerds ];
9428
+
};
9429
+
};
9430
9431
keepalive = buildPythonPackage rec {
9432
name = "keepalive-${version}";