Skip to content

Commit

Permalink
Merge pull request #56675 from terlar/pykeepass-fix-build
Browse files Browse the repository at this point in the history
pythonPackages.pykeepass: fix build
  • Loading branch information
dotlambda committed Mar 2, 2019
2 parents f70f3b3 + d9b1bfa commit e43f236
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
9 changes: 6 additions & 3 deletions pkgs/development/python-modules/argon2_cffi/default.nix
Original file line number Diff line number Diff line change
@@ -1,30 +1,33 @@
{ cffi
, six
, enum34
, hypothesis
, pytest
, wheel
, buildPythonPackage
, fetchPypi
, isPy3k
, lib
}:

buildPythonPackage rec {
pname = "argon2_cffi";
version = "19.1.0";
name = "${pname}-${version}";

src = fetchPypi {
inherit pname version;
sha256 = "81548a27b919861040cb928a350733f4f9455dd67c7d1ba92eb5960a1d7f8b26";
};

propagatedBuildInputs = [ cffi six ];
propagatedBuildInputs = [ cffi six ] ++ lib.optional (!isPy3k) enum34;
checkInputs = [ hypothesis pytest wheel ];
checkPhase = ''
pytest tests
'';

meta = {
meta = with lib; {
description = "Secure Password Hashes for Python";
homepage = https://argon2-cffi.readthedocs.io/;
license = licenses.mit;
};
}
7 changes: 5 additions & 2 deletions pkgs/development/python-modules/pykeepass/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ lib, fetchPypi, buildPythonPackage
, lxml, pycryptodome, construct
, argon2_cffi, dateutil, enum34
, argon2_cffi, dateutil, future
}:

buildPythonPackage rec {
Expand All @@ -14,9 +14,12 @@ buildPythonPackage rec {

propagatedBuildInputs = [
lxml pycryptodome construct
argon2_cffi dateutil enum34
argon2_cffi dateutil future
];

# no tests in PyPI tarball
doCheck = false;

meta = {
homepage = https://github.com/pschmitt/pykeepass;
description = "Python library to interact with keepass databases (supports KDBX3 and KDBX4)";
Expand Down

0 comments on commit e43f236

Please sign in to comment.