mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
rnginline: init at 0.2.0
This commit is contained in:
parent
27abb57b7f
commit
66133a61d5
28
pkgs/development/python-modules/rnginline/default.nix
Normal file
28
pkgs/development/python-modules/rnginline/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ lib, fetchPypi, buildPythonPackage, lxml, docopt, six, pytestCheckHook, mock }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "rnginline";
|
||||
version = "0.0.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-j4W4zwHA4yA6iAFVa/LDKp00eeCX3PbmWkjd2LSUGfk=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ lxml docopt six ];
|
||||
|
||||
checkInputs = [ pytestCheckHook mock ];
|
||||
|
||||
# Those tests does not succeed, a test dependency is likely missing but nothing is specified upstream
|
||||
disabledTestPaths = [
|
||||
"rnginline/test/test_cmdline.py"
|
||||
"rnginline/test/test_rnginline.py"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "A Python library and command-line tool for loading multi-file RELAX NG schemas from arbitary URLs, and flattening them into a single RELAX NG schema";
|
||||
homepage = "https://github.com/h4l/rnginline";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = [ lib.maintainers.lesuisse ];
|
||||
};
|
||||
}
|
@ -15172,6 +15172,8 @@ with pkgs;
|
||||
|
||||
rnix-lsp = callPackage ../development/tools/rnix-lsp { };
|
||||
|
||||
rnginline = with python3Packages; toPythonApplication rnginline;
|
||||
|
||||
rolespec = callPackage ../development/tools/misc/rolespec { };
|
||||
|
||||
rr = callPackage ../development/tools/analysis/rr { };
|
||||
|
@ -8278,6 +8278,8 @@ in {
|
||||
|
||||
rnc2rng = callPackage ../development/python-modules/rnc2rng { };
|
||||
|
||||
rnginline = callPackage ../development/python-modules/rnginline { };
|
||||
|
||||
robomachine = callPackage ../development/python-modules/robomachine { };
|
||||
|
||||
roboschool = callPackage ../development/python-modules/roboschool {
|
||||
|
Loading…
Reference in New Issue
Block a user