summary refs log tree commit diff
path: root/pkgs/development/python-modules/keyutils/default.nix
blob: 04b9e9235750fa3b4f155fc288da7851f9f32bf8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildPythonPackage, fetchurl, pkgs, pytestrunner }:

buildPythonPackage rec {
  pname = "keyutils";
  version = "0.5";
  name = "${pname}-${version}";

  src = fetchurl {
    url = "mirror://pypi/k/${pname}/${name}.tar.gz";
    sha256 = "0dskys71vkn59vlsfs1ljli0qnzk7b10iv4pawxawnk2hvyjrf10";
  };

  buildInputs = [ pkgs.keyutils pytestrunner ];

  doCheck = false;

  meta = {
    description = "A set of python bindings for keyutils";
    homepage = https://github.com/sassoftware/python-keyutils;
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ primeos ];
  };
}