nixpkgs/pkgs/development/python-modules/keyring/default.nix

31 lines
849 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi
, dbus-python, setuptools_scm, entrypoints, secretstorage
2018-04-04 18:10:22 +00:00
, pytest, pytest-flake8 }:
buildPythonPackage rec {
pname = "keyring";
version = "19.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "13frfmws03jdyz9wxb4ylkvk80qiyb6a3h3sn7wx3ry97bn5li3a";
};
2018-04-04 18:10:22 +00:00
nativeBuildInputs = [ setuptools_scm ];
2018-04-04 18:10:22 +00:00
checkInputs = [ pytest pytest-flake8 ];
propagatedBuildInputs = [ dbus-python entrypoints ] ++ stdenv.lib.optional stdenv.isLinux secretstorage;
# checks try to access a darwin path on linux
doCheck = false;
meta = with stdenv.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;
};
}