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

42 lines
1,014 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, isPy27, six
, pytest, backports_unittest-mock, keyring, setuptools_scm
2018-05-13 23:20:59 +02:00
}:
buildPythonPackage rec {
pname = "keyrings.alt";
2019-12-19 20:31:14 +01:00
version = "3.4.0";
disabled = isPy27;
2018-05-13 23:20:59 +02:00
src = fetchPypi {
inherit pname version;
2019-12-19 20:31:14 +01:00
sha256 = "91328ac4229e70b1d0061d21bf61d36b031a6b4828f2682e38c741812f6eb23d";
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 ];
2018-05-13 23:20:59 +02:00
propagatedBuildInputs = [ six ];
2018-08-30 21:09:05 +02:00
checkInputs = [ pytest keyring ] ++ stdenv.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"
];
2018-05-13 23:20:59 +02:00
meta = with stdenv.lib; {
license = licenses.mit;
description = "Alternate keyring implementations";
homepage = https://github.com/jaraco/keyrings.alt;
maintainers = with maintainers; [ nyarly ];
};
}