nixpkgs/pkgs/development/python-modules/keyrings-alt/default.nix
Sandro Jäckel ab126c9a62 python3Packages: provide setuptools-scm with toml[i] by default and remove duplicated toml packages
Some packages seem to still require toml despite setuptools-scm having switched to tomli.
If it is missing the version number in dist.into is set to 0.0.0 and silently all version pins break.
2021-09-05 15:00:10 +02:00

42 lines
999 B
Nix

{ lib, buildPythonPackage, fetchPypi, pythonOlder, isPy27, six
, pytest, backports_unittest-mock, keyring, setuptools-scm
}:
buildPythonPackage rec {
pname = "keyrings.alt";
version = "4.1.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "52ccb61d6f16c10f32f30d38cceef7811ed48e086d73e3bae86f0854352c4ab2";
};
postPatch = ''
substituteInPlace pytest.ini \
--replace "--flake8" ""
'';
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ six ];
checkInputs = [ pytest keyring ] ++ lib.optional (pythonOlder "3.3") backports_unittest-mock;
# heavily relies on importing tests from keyring package
doCheck = false;
checkPhase = ''
py.test
'';
pythonImportsCheck = [
"keyrings.alt"
];
meta = with lib; {
license = licenses.mit;
description = "Alternate keyring implementations";
homepage = "https://github.com/jaraco/keyrings.alt";
maintainers = with maintainers; [ nyarly ];
};
}