python.pkgs.secretstorage: init at 2.3.1
This commit is contained in:
parent
cec4dcb7bb
commit
f31c6c150a
@ -577,6 +577,7 @@
|
|||||||
tavyc = "Octavian Cerna <octavian.cerna@gmail.com>";
|
tavyc = "Octavian Cerna <octavian.cerna@gmail.com>";
|
||||||
ltavard = "Laure Tavard <laure.tavard@univ-grenoble-alpes.fr>";
|
ltavard = "Laure Tavard <laure.tavard@univ-grenoble-alpes.fr>";
|
||||||
teh = "Tom Hunger <tehunger@gmail.com>";
|
teh = "Tom Hunger <tehunger@gmail.com>";
|
||||||
|
teto = "Matthieu Coudron <mcoudron@hotmail.com>";
|
||||||
telotortium = "Robert Irelan <rirelan@gmail.com>";
|
telotortium = "Robert Irelan <rirelan@gmail.com>";
|
||||||
thall = "Niclas Thall <niclas.thall@gmail.com>";
|
thall = "Niclas Thall <niclas.thall@gmail.com>";
|
||||||
thammers = "Tobias Hammerschmidt <jawr@gmx.de>";
|
thammers = "Tobias Hammerschmidt <jawr@gmx.de>";
|
||||||
|
27
pkgs/development/python-modules/secretstorage/default.nix
Normal file
27
pkgs/development/python-modules/secretstorage/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -20905,6 +20905,8 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
secretstorage = callPackage ../development/python-modules/secretstorage { };
|
||||||
|
|
||||||
semantic = buildPythonPackage rec {
|
semantic = buildPythonPackage rec {
|
||||||
name = "semantic-1.0.3";
|
name = "semantic-1.0.3";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user