mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
44 lines
1,005 B
Nix
44 lines
1,005 B
Nix
{ lib, stdenv, buildPythonPackage, fetchPypi, isPy27, pythonOlder
|
|
, dbus-python
|
|
, entrypoints
|
|
, importlib-metadata
|
|
, pytest
|
|
, pytest-flake8
|
|
, secretstorage
|
|
, setuptools_scm
|
|
, toml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "keyring";
|
|
version = "21.5.0";
|
|
disabled = isPy27;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "207bd66f2a9881c835dad653da04e196c678bf104f8252141d2d3c4f31051579";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools_scm
|
|
toml
|
|
];
|
|
|
|
checkInputs = [ pytest pytest-flake8 ];
|
|
|
|
propagatedBuildInputs = [ dbus-python entrypoints ]
|
|
++ lib.optional stdenv.isLinux secretstorage
|
|
++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
|
|
|
|
# checks try to access a darwin path on linux
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Store and access your passwords safely";
|
|
homepage = "https://pypi.python.org/pypi/keyring";
|
|
license = licenses.psfl;
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|