summary refs log tree commit diff
path: root/pkgs/development/python-modules/bandcamp-api/default.nix
blob: 31efe43cbef59d0db9bbc1a981340e25d8fac63c (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
38
39
40
41
42
{ lib
, buildPythonPackage
, fetchPypi
, beautifulsoup4
, demjson3
, html5lib
, lxml
, requests
}:

buildPythonPackage rec {
  pname = "bandcamp-api";
  version = "0.2.3";

  format = "setuptools";

  src = fetchPypi {
    pname = "bandcamp_api";
    inherit version;
    hash = "sha256-7/WXMo7fCDMHATp4hEB8b7fNJWisUv06hbP+O878Phs=";
  };

  propagatedBuildInputs = [
    beautifulsoup4
    demjson3
    html5lib
    lxml
    requests
  ];

  pythonImportsCheck = [ "bandcamp_api" ];

  # upstream has no tests
  doCheck = false;

  meta = {
    description = "Obtains information from bandcamp.com";
    homepage = "https://github.com/RustyRin/bandcamp-api";
    license = lib.licenses.gpl3Only;
    maintainers = with lib.maintainers; [ dotlambda ];
  };
}