about summary refs log tree commit diff
path: root/pkgs/development/python-modules/arpy/default.nix
blob: 229e15d24ff343082b79e3a96d429770ba755367 (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
24
25
26
27
28
29
30
31
{ lib
, buildPythonPackage
, fetchFromGitHub
, unittestCheckHook
}:

buildPythonPackage rec {
  pname = "arpy";
  version = "2.3.0";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "viraptor";
    repo = pname;
    rev = version;
    hash = "sha256-jD1XJJhcpJymn0CwZ65U06xLKm1JjHffmx/umEO7a5s=";
  };

  checkInputs = [
    unittestCheckHook
  ];

  pythonImportsCheck = [ "arpy" ];

  meta = with lib; {
    description = "A library for accessing the archive files and reading the contents";
    homepage = "https://github.com/viraptor/arpy";
    license = licenses.bsd2;
    maintainers = with maintainers; [ thornycrackers ];
  };
}