python2Packages.keyring: drop
It's not used by any leaf package.
This commit is contained in:
parent
6080ef54eb
commit
d9823c39ce
@ -1,33 +0,0 @@
|
||||
{ lib, stdenv, buildPythonPackage, fetchPypi
|
||||
, 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;
|
||||
|
||||
doCheck = !stdenv.isDarwin;
|
||||
|
||||
checkPhase = ''
|
||||
py.test
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
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;
|
||||
};
|
||||
}
|
@ -218,8 +218,6 @@ with self; with super; {
|
||||
|
||||
jupyter_console = callPackage ../development/python-modules/jupyter_console/5.nix { };
|
||||
|
||||
keyring = callPackage ../development/python-modules/keyring/2.nix { };
|
||||
|
||||
koji = callPackage ../development/python-modules/koji { };
|
||||
|
||||
konfig = callPackage ../development/python-modules/konfig { };
|
||||
|
Loading…
Reference in New Issue
Block a user