Unverified Commit ddf8259f authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #215001 from GenericNerdyUsername/fusesoc

fusesoc: init at 1.12.0
parents d57b3416 1ff22488
Loading
Loading
Loading
Loading
+31 −0
Original line number Diff line number Diff line
{ buildPythonPackage
, fetchFromGitHub
, lib
, pyyaml
, six
, lxml
}:

buildPythonPackage rec {
  pname = "ipyxact";
  version = "0.3.2";

  propagatedBuildInputs = [ pyyaml ];
  checkInputs = [ six lxml ];

  src = fetchFromGitHub {
    owner = "olofk";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-myD+NnqcxxaSAV7qZa8xqeciaiFqFePqIzd7sb/2GXA=";
  };

  pythonImportsCheck = [ "ipyxact" ];

  meta = with lib; {
    homepage = "https://github.com/olofk/ipyxact";
    description = "IP-XACT parser";
    maintainers = with maintainers; [ genericnerdyusername ];
    license = licenses.mit;
  };
}
+47 −0
Original line number Diff line number Diff line
{ buildPythonPackage
, stdenv
, fetchFromGitHub
, lib
, attrs
, distro
, jsonschema
, six
, zipfile2
, hypothesis
, mock
, packaging
, testfixtures
}:

buildPythonPackage rec {
  pname = "okonomiyaki";
  version = "1.3.2";

  src = fetchFromGitHub {
    owner = "enthought";
    repo = pname;
    rev = version;
    hash = "sha256-eWCOuGtdjBGThAyu15aerclkSWC593VGDPHJ98l30iY=";
  };

  propagatedBuildInputs = [ distro attrs jsonschema six zipfile2 ];

  preCheck = ''
    substituteInPlace okonomiyaki/runtimes/tests/test_runtime.py \
      --replace 'runtime_info = PythonRuntime.from_running_python()' 'raise unittest.SkipTest() #'
   '' + lib.optionalString stdenv.isDarwin ''
    substituteInPlace okonomiyaki/platforms/tests/test_pep425.py \
      --replace 'self.assertEqual(platform_tag, self.tag.platform)' 'raise unittest.SkipTest()'
  '';

  checkInputs = [ hypothesis mock packaging testfixtures ];

  pythonImportsCheck = [ "okonomiyaki" ];

  meta = with lib; {
    homepage = "https://github.com/enthought/okonomiyaki";
    description = "An experimental library aimed at consolidating a lot of low-level code used for Enthought's eggs";
    maintainers = with maintainers; [ genericnerdyusername ];
    license = licenses.bsd3;
  };
}
+48 −0
Original line number Diff line number Diff line
{ buildPythonPackage
, fetchFromGitHub
, writeText
, lib
, attrs
, six
, okonomiyaki
}:

let
  version = "0.8.2";

  versionFile = writeText "simplesat_ver" ''
    version = '${version}'
    full_version = '${version}'
    git_revision = '0000000000000000000000000000000000000000'
    is_released = True
    msi_version = '${version}.000'
    version_info = (${lib.versions.major version}, ${lib.versions.minor version}, ${lib.versions.patch version}, 'final', 0)
  '';

in buildPythonPackage rec {
  pname = "simplesat";
  inherit version;

  propagatedBuildInputs = [ attrs six okonomiyaki ];

  src = fetchFromGitHub {
    owner = "enthought";
    repo = "sat-solver";
    rev = "v${version}";
    hash = "sha256-6BQn1W2JGrMmNqgxi+sXx06XzNMcvwqYGMkpD0SSpT8=";
  };

  preConfigure = ''
    cp ${versionFile} simplesat/_version.py
  '';
  dontUseSetuptoolsCheck = true;

  pythonImportsCheck = [ "simplesat" ];

  meta = with lib; {
    homepage = "https://github.com/enthought/sat-solver";
    description = "Prototype for SAT-based dependency handling";
    maintainers = with maintainers; [ genericnerdyusername ];
    license = licenses.bsd3;
  };
}
+27 −0
Original line number Diff line number Diff line
{ buildPythonPackage
, fetchFromGitHub
, lib
}:

buildPythonPackage rec {
  pname = "zipfile2";
  version = "0.0.12";

  src = fetchFromGitHub {
    owner = "cournape";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-BwcEgW4XrQqz0Jmtbyxf8q0mWTJXv2dL3Tk7N/IYuMI=";
  };

  patches = [ ./no-setuid.patch ];

  pythonImportsCheck = [ "zipfile2" ];

  meta = with lib; {
    homepage = "https://github.com/cournape/zipfile2";
    description = "A backwards-compatible improved zipfile class";
    maintainers = with maintainers; [ genericnerdyusername ];
    license = licenses.psfl;
  };
}
+15 −0
Original line number Diff line number Diff line
diff --git a/zipfile2/tests/test__zipfile.py b/zipfile2/tests/test__zipfile.py
index 60f2ed2..db6e5bc 100644
--- a/zipfile2/tests/test__zipfile.py
+++ b/zipfile2/tests/test__zipfile.py
@@ -585,8 +585,8 @@ class TestsPermissionExtraction(unittest.TestCase):
                         if index & 1 << order:
                             mode |= permissions[permgroup][order]
                     for order in range(3):
-                        if specialindex & 1 << order:
-                            mode |= permissions['special'][order]
+                        if specialindex & 1 << order and order == 0:
+                            raise unittest.SkipTest("The nix build process doesn't allow you to use the setuid bit")
                     os.chmod(path, mode)
                     real_permission = os.stat(path).st_mode & 0xFFF
                     self.files.append((path, real_permission))
Loading