Merge pull request #179334 from nikstur/python-plantuml
python3Packages.plantuml: init at 0.3.0
This commit is contained in:
commit
a9ec898d38
3 changed files with 44 additions and 0 deletions
|
@ -14720,4 +14720,10 @@
|
|||
github = "dfithian";
|
||||
githubId = 8409320;
|
||||
};
|
||||
nikstur = {
|
||||
email = "nikstur@outlook.com";
|
||||
name = "nikstur";
|
||||
github = "nikstur";
|
||||
githubId = 61635709;
|
||||
};
|
||||
}
|
||||
|
|
36
pkgs/development/python-modules/plantuml/default.nix
Normal file
36
pkgs/development/python-modules/plantuml/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{ buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
# Runtime dependencies
|
||||
, httplib2
|
||||
, six
|
||||
}:
|
||||
|
||||
buildPythonPackage {
|
||||
pname = "plantuml";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dougn";
|
||||
repo = "python-plantuml";
|
||||
rev = "93e1aac25b17d896b0d05d0a1aa352c7bd11dd31";
|
||||
sha256 = "sha256-aPXPqoKlu8VLi0Jn84brG7v3qM9L18Ut4sabYYGb3qQ=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
httplib2
|
||||
six
|
||||
];
|
||||
|
||||
# Project does not contain a test suite
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "plantuml" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python interface to a plantuml web service instead of having to run java locally";
|
||||
homepage = "https://github.com/dougn/python-plantuml";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ nikstur ];
|
||||
};
|
||||
}
|
|
@ -6755,6 +6755,8 @@ in {
|
|||
|
||||
plaid-python = callPackage ../development/python-modules/plaid-python { };
|
||||
|
||||
plantuml = callPackage ../development/python-modules/plantuml { };
|
||||
|
||||
plaster = callPackage ../development/python-modules/plaster { };
|
||||
|
||||
plaster-pastedeploy = callPackage ../development/python-modules/plaster-pastedeploy { };
|
||||
|
|
Loading…
Reference in a new issue