pythonPackages.kaptan: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
64d22bc0a9
commit
c099f8aaa3
26
pkgs/development/python-modules/kaptan/default.nix
Normal file
26
pkgs/development/python-modules/kaptan/default.nix
Normal file
@@ -0,0 +1,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 ];
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user