about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/python-nvd3/default.nix
blob: 3674cb9bf5681a4ab2fec41e6d47dafd90817459 (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
{ lib, buildPythonPackage, fetchFromGitHub, python-slugify, jinja2, setuptools, coverage }:

buildPythonPackage rec {
  pname = "python-nvd3";
  version = "0.15.0";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "areski";
    repo = "python-nvd3";
    rev = "dc8e772597ed72f413b229856fc9a3318e57fcfc";
    sha256 = "1vjnicszcc9j0rgb58104fk9sry5xad1xli64jana9bkx42c6x1v";
  };

  propagatedBuildInputs = [ python-slugify jinja2 setuptools ];
  nativeCheckInputs = [ coverage ];

  checkPhase = ''
    coverage run --source=nvd3 setup.py test
  '';

  meta = with lib; {
    homepage = "https://github.com/areski/python-nvd3";
    description = "Python Wrapper for NVD3 - It's time for beautiful charts";
    mainProgram = "nvd3";
    license = licenses.mit;
    maintainers = [ maintainers.ivan-tkatchev ];
  };
}