Unverified Commit ac4655fd authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.python-nvd3: 0.15.0 -> 0.16.0 (#438152)

parents ffc350a3 7cadc50d
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
@@ -8,16 +8,16 @@
  pytestCheckHook,
}:

buildPythonPackage {
buildPythonPackage rec {
  pname = "python-nvd3";
  version = "0.15.0";
  version = "0.16.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "areski";
    repo = "python-nvd3";
    rev = "dc8e772597ed72f413b229856fc9a3318e57fcfc";
    sha256 = "1vjnicszcc9j0rgb58104fk9sry5xad1xli64jana9bkx42c6x1v";
    tag = "v${version}";
    hash = "sha256-+J0lHAOjX3hbymjESQ6WpEnly+1Lv9o0ucIpBxTuS6s=";
  };

  build-system = [ setuptools ];
@@ -32,10 +32,11 @@ buildPythonPackage {
  enabledTestPaths = [ "tests.py" ];

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