summary refs log tree commit diff
diff options
context:
space:
mode:
authorFernando J Pando <fernando.pando@stelligent.com>2016-08-18 11:04:40 -0400
committerFrederik Rietdijk <fridh@fridh.nl>2016-08-30 12:06:18 +0200
commite8d326a43868aefacaf16620d7ca23ae9ca6fb9f (patch)
treee1deddd476723b0f1e0d50f524f90d03bfbe095e
parentf3a9980e19e5802edac6caf90e950a22c6e91a70 (diff)
downloadnixpkgs-e8d326a43868aefacaf16620d7ca23ae9ca6fb9f.tar
nixpkgs-e8d326a43868aefacaf16620d7ca23ae9ca6fb9f.tar.gz
nixpkgs-e8d326a43868aefacaf16620d7ca23ae9ca6fb9f.tar.bz2
nixpkgs-e8d326a43868aefacaf16620d7ca23ae9ca6fb9f.tar.lz
nixpkgs-e8d326a43868aefacaf16620d7ca23ae9ca6fb9f.tar.xz
nixpkgs-e8d326a43868aefacaf16620d7ca23ae9ca6fb9f.tar.zst
nixpkgs-e8d326a43868aefacaf16620d7ca23ae9ca6fb9f.zip
pythonPackages.ramlfications: init at 0.1.9
Tested on Linux
Tested on Darwin
-rw-r--r--pkgs/top-level/python-packages.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index bf538e5f151..0b6ae5ca978 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -29514,6 +29514,32 @@ in modules // {
     };
   };
 
+  ramlfications = buildPythonPackage rec {
+    name = "${pname}-${version}";
+    pname = "ramlfications";
+    version = "0.1.9";
+
+    meta = {
+      description = "A Python RAML parser.";
+      homepage    = "https://ramlfications.readthedocs.org";
+      license     = licenses.asl20;
+      maintainers = with maintainers; [ nand0p ];
+      platforms   = platforms.all;
+    };
+
+    doCheck = false;
+    # [darwin]  AssertionError: Expected 'update_mime_types' to have been called once. Called 0 times.
+
+    buildInputs = with self; [ mock pytest pytest-mock pytest-server-fixtures pytest-localserver ];
+
+    propagatedBuildInputs = with self; [ termcolor click markdown2 six jsonref pyyaml xmltodict attrs ];
+
+    src = pkgs.fetchurl {
+      url = "mirror://pypi/r/${pname}/${name}.tar.gz";
+      sha256 = "0xvnna7kaq4nm5nfnwcwbr5bcm2s532hgyp7kq4v9iivn48rrf3v";
+    };
+  };
+
   yapf = buildPythonPackage rec {
     name = "yapf-${version}";
     version = "0.11.0";