3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.pykeepass: fix cross-compilation

This commit is contained in:
legendofmiracles 2021-10-19 23:02:18 -06:00 committed by Jonathan Ringer
parent 0fe2522fd2
commit f632423c61

View file

@ -24,6 +24,8 @@ buildPythonPackage rec {
argon2_cffi python-dateutil future
];
propagatedNativeBuildInputs = [ argon2_cffi ];
checkPhase = ''
${python.interpreter} -m unittest tests.tests
'';