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

34 lines
847 B
Nix
Raw Normal View History

{ lib, stdenv, buildPythonPackage, fetchPypi
2019-11-23 14:51:19 +00:00
, dbus-python, setuptools_scm, entrypoints, secretstorage
, pytest, pytest-flake8 }:
buildPythonPackage rec {
pname = "keyring";
version = "18.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "0f58jq58jhfzlhix7x2zz7c4ycdvcs1z3sgs4lkr4xxx680wrmk7";
};
nativeBuildInputs = [ setuptools_scm ];
checkInputs = [ pytest pytest-flake8 ];
propagatedBuildInputs = [ dbus-python entrypoints ] ++ lib.optional stdenv.isLinux secretstorage;
2019-11-23 14:51:19 +00:00
doCheck = !stdenv.isDarwin;
checkPhase = ''
py.test
'';
meta = with lib; {
2019-11-23 14:51:19 +00:00
description = "Store and access your passwords safely";
homepage = "https://pypi.python.org/pypi/keyring";
license = licenses.psfl;
maintainers = with maintainers; [ lovek323 orivej ];
platforms = platforms.unix;
};
}