2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pythonOlder, isPy27, six
|
2020-11-29 21:49:24 +00:00
|
|
|
, pytest, backports_unittest-mock, keyring, setuptools_scm, toml
|
2018-05-13 22:20:59 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "keyrings.alt";
|
2021-01-18 05:03:15 +00:00
|
|
|
version = "4.0.2";
|
2019-12-24 09:24:42 +00:00
|
|
|
disabled = isPy27;
|
2018-05-13 22:20:59 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-01-18 05:03:15 +00:00
|
|
|
sha256 = "cc475635099d6edd7e475c5a479e5b4da5e811a3af04495a1e9ada488d16fe25";
|
2018-05-13 22:20:59 +01:00
|
|
|
};
|
2018-05-27 17:51:54 +01:00
|
|
|
|
2018-08-30 20:09:05 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace pytest.ini \
|
|
|
|
--replace "--flake8" ""
|
|
|
|
'';
|
|
|
|
|
2020-11-29 21:49:24 +00:00
|
|
|
nativeBuildInputs = [ setuptools_scm toml ];
|
2018-05-13 22:20:59 +01:00
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
|
2021-01-24 00:29:22 +00:00
|
|
|
checkInputs = [ pytest keyring ] ++ lib.optional (pythonOlder "3.3") backports_unittest-mock;
|
2018-05-27 18:30:53 +01:00
|
|
|
|
2019-12-22 01:30:49 +00:00
|
|
|
# heavily relies on importing tests from keyring package
|
|
|
|
doCheck = false;
|
2018-05-27 18:30:53 +01:00
|
|
|
checkPhase = ''
|
|
|
|
py.test
|
|
|
|
'';
|
2018-05-13 22:20:59 +01:00
|
|
|
|
2019-12-22 01:30:49 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"keyrings.alt"
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-05-13 22:20:59 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
description = "Alternate keyring implementations";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/jaraco/keyrings.alt";
|
2018-05-13 22:20:59 +01:00
|
|
|
maintainers = with maintainers; [ nyarly ];
|
|
|
|
};
|
|
|
|
}
|