2018-10-16 11:05:25 -07:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pyyaml
|
2019-04-23 01:37:44 -07:00
|
|
|
, pytest
|
2018-10-16 11:05:25 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "kaptan";
|
2019-04-23 01:37:44 -07:00
|
|
|
version = "0.5.12";
|
2018-10-16 11:05:25 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-04-23 01:37:44 -07:00
|
|
|
sha256 = "1abd1f56731422fce5af1acc28801677a51e56f5d3c3e8636db761ed143c3dd2";
|
2018-10-16 11:05:25 -07:00
|
|
|
};
|
|
|
|
|
2019-04-10 01:33:04 -07:00
|
|
|
postPatch = ''
|
2019-04-23 01:37:44 -07:00
|
|
|
sed -i "s/==.*//g" requirements/test.txt
|
2019-04-10 01:33:04 -07:00
|
|
|
'';
|
|
|
|
|
2018-10-16 11:05:25 -07:00
|
|
|
propagatedBuildInputs = [ pyyaml ];
|
|
|
|
|
2019-04-23 01:37:44 -07:00
|
|
|
checkInputs = [ pytest ];
|
2019-01-06 08:33:25 -08:00
|
|
|
|
2018-10-16 11:05:25 -07:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Configuration manager for python applications";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://kaptan.readthedocs.io/";
|
2018-10-16 11:05:25 -07:00
|
|
|
license = licenses.bsd3;
|
2019-03-12 15:45:33 -07:00
|
|
|
maintainers = with maintainers; [ ];
|
2018-10-16 11:05:25 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|