Merge pull request #42950 from Ma27/fix-py-keyutils

pythonPackages.keyutils: fix build
This commit is contained in:
xeji 2018-07-05 00:31:46 +02:00 committed by GitHub
commit c6bea11567
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,17 +1,19 @@
{ lib, buildPythonPackage, fetchPypi, keyutils, pytestrunner }:
{ lib, buildPythonPackage, fetchFromGitHub, keyutils, pytestrunner, pytest }:
buildPythonPackage rec {
pname = "keyutils";
version = "0.5";
src = fetchPypi {
inherit pname version;
sha256 = "0dskys71vkn59vlsfs1ljli0qnzk7b10iv4pawxawnk2hvyjrf10";
# github version comes bundled with tests
src = fetchFromGitHub {
owner = "sassoftware";
repo = "python-keyutils";
rev = "v${version}";
sha256 = "1gga60w8sb3r5bxa0bfp7d7wzg6s3db5y7aizr14p2pvp92d8bdi";
};
checkInputs = [ keyutils pytestrunner ];
doCheck = false;
buildInputs = [ keyutils ];
checkInputs = [ pytest pytestrunner ];
meta = {
description = "A set of python bindings for keyutils";