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