mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
python3Packages.python-nvd3: init at 0.15.0
This commit is contained in:
parent
f41d6886ee
commit
f6d7ad53c4
27
pkgs/development/python-modules/python-nvd3/default.nix
Normal file
27
pkgs/development/python-modules/python-nvd3/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchFromGitHub, python-slugify, jinja2, setuptools, coverage }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "python-nvd3";
|
||||||
|
version = "0.15.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "areski";
|
||||||
|
repo = "python-nvd3";
|
||||||
|
rev = "dc8e772597ed72f413b229856fc9a3318e57fcfc";
|
||||||
|
sha256 = "1vjnicszcc9j0rgb58104fk9sry5xad1xli64jana9bkx42c6x1v";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ python-slugify jinja2 setuptools ];
|
||||||
|
checkInputs = [ 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";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.ivan-tkatchev ];
|
||||||
|
};
|
||||||
|
}
|
@ -4888,6 +4888,8 @@ in {
|
|||||||
|
|
||||||
nvchecker = callPackage ../development/python-modules/nvchecker { };
|
nvchecker = callPackage ../development/python-modules/nvchecker { };
|
||||||
|
|
||||||
|
python-nvd3 = callPackage ../development/python-modules/python-nvd3 { };
|
||||||
|
|
||||||
nwdiag = callPackage ../development/python-modules/nwdiag { };
|
nwdiag = callPackage ../development/python-modules/nwdiag { };
|
||||||
|
|
||||||
oath = callPackage ../development/python-modules/oath { };
|
oath = callPackage ../development/python-modules/oath { };
|
||||||
|
Loading…
Reference in New Issue
Block a user