summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/uncompresspy/default.nix
blob: 1e453ca0d57a518311d49cef8294c46a9a097d3e (plain)
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
32
{
  lib,
  buildPythonPackage,
  fetchPypi,
  setuptools,
}:

buildPythonPackage rec {
  pname = "uncompresspy";
  version = "0.4.1";
  pyproject = true;

  # no tags on GitHub
  src = fetchPypi {
    inherit pname version;
    hash = "sha256-556tZurtjUI2TYB8C6PzqK7w4Ah6m+rxpg8jqAimwUc=";
  };

  build-system = [ setuptools ];

  pythonImportsCheck = [ "uncompresspy" ];

  # upstream has no tests
  doCheck = false;

  meta = {
    description = "Pure Python package for uncompressing LZW files (.Z), such as the ones created by Unix's shell tool compress";
    homepage = "https://github.com/kYwzor/uncompresspy";
    license = lib.licenses.bsd3;
    maintainers = [ lib.maintainers.dotlambda ];
  };
}