nixpkgs/pkgs/development/python-modules/keyrings-alt/default.nix

42 lines
1,010 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, pythonOlder, isPy27, six
, pytest, backports_unittest-mock, keyring, setuptools-scm, toml
2018-05-13 23:20:59 +02:00
}:
buildPythonPackage rec {
pname = "keyrings.alt";
version = "4.0.2";
disabled = isPy27;
2018-05-13 23:20:59 +02:00
src = fetchPypi {
inherit pname version;
sha256 = "cc475635099d6edd7e475c5a479e5b4da5e811a3af04495a1e9ada488d16fe25";
2018-05-13 23:20:59 +02:00
};
2018-08-30 21:09:05 +02:00
postPatch = ''
substituteInPlace pytest.ini \
--replace "--flake8" ""
'';
nativeBuildInputs = [ setuptools-scm toml ];
2018-05-13 23:20:59 +02:00
propagatedBuildInputs = [ six ];
checkInputs = [ pytest keyring ] ++ lib.optional (pythonOlder "3.3") backports_unittest-mock;
2018-05-27 19:30:53 +02:00
# heavily relies on importing tests from keyring package
doCheck = false;
2018-05-27 19:30:53 +02:00
checkPhase = ''
py.test
'';
2018-05-13 23:20:59 +02:00
pythonImportsCheck = [
"keyrings.alt"
];
meta = with lib; {
2018-05-13 23:20:59 +02:00
license = licenses.mit;
description = "Alternate keyring implementations";
homepage = "https://github.com/jaraco/keyrings.alt";
2018-05-13 23:20:59 +02:00
maintainers = with maintainers; [ nyarly ];
};
}