python.pkgs.secretstorage: init at 2.3.1

This commit is contained in:
Matthieu Coudron
2017-08-28 02:11:20 +02:00
committed by Frederik Rietdijk
parent cec4dcb7bb
commit f31c6c150a
3 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
{ stdenv, fetchFromGitHub, buildPythonPackage
, dbus-python, cryptography }:
buildPythonPackage rec {
pname = "secretstorage";
version = "2.3.1";
name = "${pname}-${version}";
src = fetchFromGitHub {
owner = "mitya57";
repo = "secretstorage";
rev = version;
sha256 = "1sjd2jjbxgkkxyrfwx89x0hsnn39w2cr2qkxbg1iz52znr4sqism";
};
propagatedBuildInputs = [ dbus-python cryptography ];
doCheck = false; # requires dbus session
meta = with stdenv.lib; {
homepage = "https://github.com/mitya57/secretstorage";
description = "Python bindings to FreeDesktop.org Secret Service API";
license = licenses.bsdOriginal;
platforms = platforms.linux;
maintainer = with maintainers; [ teto ];
};
}