summary refs log tree commit diff
path: root/pkgs/development/python-modules/datauri/default.nix
blob: ec2643eaa5ef408b6d912d234da142b702eece56 (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
32
33
34
35
36
37
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "datauri";
  version = "1.1.0";

  src = fetchFromGitHub {
    owner = "fcurella";
    repo = "python-datauri";
    rev = "v${version}";
    sha256 = "sha256-Eevd/xxKgxvvsAfI/L/KShH+PfxffBGyVwKewLgyEu0=";
  };

  pythonImportsCheck = [
    "datauri"
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  disabledTestPaths = [
    # UnicodeDecodeError: 'utf-8' codec can't decode
    "tests/test_file_ebcdic.txt"
  ];

  meta = with lib; {
    description = "Data URI manipulation made easy.";
    homepage = "https://github.com/fcurella/python-datauri";
    license = licenses.unlicense;
    maintainers = with maintainers; [ yuu ];
  };
}