summary refs log blame commit diff
path: root/pkgs/development/python-modules/secretstorage/default.nix
blob: 5b7b7ea27972410f3898f68568f9a4406945f7b8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                                                           


                          
                    
 




                               
                                                                    

    


                           
    
 

                         
 
                    
                                                          
                                                                          
                            
                                             

    
{ lib, fetchPypi, buildPythonPackage, pythonOlder, cryptography, jeepney }:

buildPythonPackage rec {
  pname = "secretstorage";
  version = "3.3.1";

  disabled = pythonOlder "3.5";

  src = fetchPypi {
    pname = "SecretStorage";
    inherit version;
    sha256 = "15ginv4gzxrx77n7517xnvf2jcpqc6ran12s951hc85zlr8nqrpx";
  };

  propagatedBuildInputs = [
    cryptography
    jeepney
  ];

  # Needs a D-Bus Sesison
  doCheck = false;

  meta = with lib; {
    homepage = "https://github.com/mitya57/secretstorage";
    description = "Python bindings to FreeDesktop.org Secret Service API";
    license = licenses.bsd3;
    maintainers = with maintainers; [ teto ];
  };
}