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

36 lines
925 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi
2018-04-04 19:10:22 +01:00
, setuptools_scm, entrypoints, secretstorage
, pytest, pytest-flake8 }:
buildPythonPackage rec {
pname = "keyring";
2018-04-04 19:10:22 +01:00
version = "12.0.1";
src = fetchPypi {
inherit pname version;
2018-04-04 19:10:22 +01:00
sha256 = "846c9c709ee1203bac5444abec19b5228f4601377686f33cba672aa0ba313abd";
};
2018-04-04 19:10:22 +01:00
nativeBuildInputs = [ setuptools_scm ];
2018-04-04 19:10:22 +01:00
checkInputs = [ pytest pytest-flake8 ];
2018-04-04 19:10:22 +01:00
propagatedBuildInputs = [ entrypoints ] ++ stdenv.lib.optional stdenv.isLinux secretstorage;
2018-04-13 12:51:01 +01:00
# all tests with flake8 are broken right now
# https://github.com/tholo/pytest-flake8/issues/45
doCheck = false;
checkPhase = ''
2018-04-04 19:10:22 +01:00
py.test
'';
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;
};
}