mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
python.pkgs.pykeepass: init at 3.0.2
This commit is contained in:
parent
75b2058aff
commit
dca577a36c
26
pkgs/development/python-modules/pykeepass/default.nix
Normal file
26
pkgs/development/python-modules/pykeepass/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib, fetchPypi, buildPythonPackage
|
||||
, lxml, pycryptodome, construct
|
||||
, argon2_cffi, dateutil, enum34
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pykeepass";
|
||||
version = "3.0.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1kfnh42nimsbdpwpny2c9df82b2n4fb5fagh54ck06f3x483vd90";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
lxml pycryptodome construct
|
||||
argon2_cffi dateutil enum34
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/pschmitt/pykeepass;
|
||||
description = "Python library to interact with keepass databases (supports KDBX3 and KDBX4)";
|
||||
license = lib.licenses.gpl3;
|
||||
};
|
||||
|
||||
}
|
@ -467,6 +467,8 @@ in {
|
||||
|
||||
pykerberos = callPackage ../development/python-modules/pykerberos { };
|
||||
|
||||
pykeepass = callPackage ../development/python-modules/pykeepass { };
|
||||
|
||||
pymatgen = callPackage ../development/python-modules/pymatgen { };
|
||||
|
||||
pymatgen-lammps = callPackage ../development/python-modules/pymatgen-lammps { };
|
||||
|
Loading…
Reference in New Issue
Block a user