# HG changeset patch # User RhodeCode Admin # Date 2023-03-06 12:03:18 # Node ID 603f706502d362a0db7b3945c2fa57b12ef5e6cc # Parent 98004a1b025952768caebaa01ba7940ab86b4567 packages: removed nix files diff --git a/Makefile b/Makefile --- a/Makefile +++ b/Makefile @@ -78,6 +78,18 @@ docs-cleanup: web-build: NODE_PATH=$(NODE_PATH) $(GRUNT) + # check required files + STATIC_CHECK="/robots.txt /502.html \ + /js/scripts.min.js /js/rhodecode-components.js \ + /css/style.css /css/style-polymer.css /css/style-ipython.css" + + for file in $STATIC_CHECK; + do + if [ ! -f rhodecode/public/$file ]; then + echo "Missing $file expected after web-build" + exit 1 + fi + done .PHONY: pip-packages ## show outdated packages diff --git a/default.nix b/default.nix deleted file mode 100644 --- a/default.nix +++ /dev/null @@ -1,302 +0,0 @@ -# Nix environment for the community edition -# -# This shall be as lean as possible, just producing the enterprise-ce -# derivation. For advanced tweaks to pimp up the development environment we use -# "shell.nix" so that it does not have to clutter this file. -# -# Configuration, set values in "~/.nixpkgs/config.nix". -# example -# { -# # Thoughts on how to configure the dev environment -# rc = { -# codeInternalUrl = "https://usr:token@code.rhodecode.com/internal"; -# sources = { -# rhodecode-vcsserver = "/home/user/work/rhodecode-vcsserver"; -# rhodecode-enterprise-ce = "/home/user/work/rhodecode-enterprise-ce"; -# rhodecode-enterprise-ee = "/home/user/work/rhodecode-enterprise-ee"; -# }; -# }; -# } - -args@ -{ system ? builtins.currentSystem -, pythonPackages ? "python27Packages" -, pythonExternalOverrides ? self: super: {} -, doCheck ? false -, ... -}: - -let - pkgs_ = args.pkgs or (import { inherit system; }); -in - -let - pkgs = import { - overlays = [ - (import ./pkgs/overlays.nix) - ]; - inherit - (pkgs_) - system; - }; - - # Works with the new python-packages, still can fallback to the old - # variant. - basePythonPackagesUnfix = basePythonPackages.__unfix__ or ( - self: basePythonPackages.override (a: { inherit self; })); - - # Evaluates to the last segment of a file system path. - basename = path: with pkgs.lib; last (splitString "/" path); - startsWith = prefix: full: let - actualPrefix = builtins.substring 0 (builtins.stringLength prefix) full; - in actualPrefix == prefix; - - # source code filter used as arugment to builtins.filterSource. - src-filter = path: type: with pkgs.lib; - let - ext = last (splitString "." path); - parts = last (splitString "/" path); - in - !builtins.elem (basename path) [ - ".git" ".hg" "__pycache__" ".eggs" ".idea" ".dev" - "node_modules" "node_binaries" - "build" "data" "result" "tmp"] && - !builtins.elem ext ["egg-info" "pyc"] && - !startsWith "result" (basename path); - - sources = - let - inherit - (pkgs.lib) - all - isString - attrValues; - - sourcesConfig = pkgs.config.rc.sources or {}; - in - # Ensure that sources are configured as strings. Using a path - # would result in a copy into the nix store. - assert all isString (attrValues sourcesConfig); - sourcesConfig; - - rhodecode-enterprise-ce-src = builtins.filterSource src-filter ./.; - version = builtins.readFile "${rhodecode-enterprise-ce-src}/rhodecode/VERSION"; - - nodeEnv = import ./pkgs/node-default.nix { - inherit - pkgs - system; - }; - nodeDependencies = nodeEnv.shell.nodeDependencies; - - rhodecode-testdata-src = sources.rhodecode-testdata or ( - pkgs.fetchhg { - url = "https://code.rhodecode.com/upstream/rc_testdata"; - rev = "v0.10.0"; - sha256 = "0zn9swwvx4vgw4qn8q3ri26vvzgrxn15x6xnjrysi1bwmz01qjl0"; - }); - - rhodecode-testdata = import "${rhodecode-testdata-src}/default.nix" { - inherit - doCheck - pkgs - pythonPackages; - }; - - pythonLocalOverrides = self: super: { - rhodecode-enterprise-ce = - let - linkNodePackages = '' - export RHODECODE_CE_PATH=${rhodecode-enterprise-ce-src} - - echo "[BEGIN]: Link node packages and binaries" - # johbo: Linking individual packages allows us to run "npm install" - # inside of a shell to try things out. Re-entering the shell will - # restore a clean environment. - rm -fr node_modules - mkdir node_modules - ln -s ${nodeDependencies}/lib/node_modules/* node_modules/ - export NODE_PATH=./node_modules - - rm -fr node_binaries - mkdir node_binaries - ln -s ${nodeDependencies}/bin/* node_binaries/ - echo "[DONE ]: Link node packages and binaries" - ''; - - releaseName = "RhodeCodeEnterpriseCE-${version}"; - pythonWithEnv = - self.python.buildEnv.override { - extraLibs = [ ] ++ self.rhodecode-enterprise-ce.propagatedBuildInputs; - ignoreCollisions = true; - #--set PYTHONHASHSEED random TODO - }; - in super.rhodecode-enterprise-ce.override (attrs: { - inherit - doCheck - version; - - name = "rhodecode-enterprise-ce-${version}"; - releaseName = releaseName; - src = rhodecode-enterprise-ce-src; - dontStrip = true; # prevent strip, we don't need it. - - # expose following attributed outside - passthru = { - inherit - rhodecode-testdata - linkNodePackages - myPythonPackagesUnfix - pythonLocalOverrides - pythonCommunityOverrides; - - pythonPackages = self; - rc_pkgs = pkgs; - }; - - buildInputs = - attrs.buildInputs or [] ++ [ - rhodecode-testdata - ]; - - #NOTE: option to inject additional propagatedBuildInputs - propagatedBuildInputs = - attrs.propagatedBuildInputs or [] ++ [ - - ]; - - preBuild = '' - export NIX_PATH=nixpkgs=${pkgs.path} - export SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt - - echo "[BEGIN]: Building frontend assets" - ${linkNodePackages} - make web-build - rm -fr node_modules - rm -fr node_binaries - echo "[DONE ]: Building frontend assets" - ''; - - # Add bin directory to path so that tests can find 'rhodecode'. - preCheck = '' - echo "Expanding PATH with $out/bin directory" - export PATH="$out/bin:$PATH" - ''; - - # custom check phase for testing - checkPhase = '' - runHook preCheck - PYTHONHASHSEED=random py.test -vv -p no:sugar -r xw --cov-config=.coveragerc --cov=rhodecode --cov-report=term-missing rhodecode - runHook postCheck - ''; - - postCheck = '' - echo "Cleanup of rhodecode/tests" - rm -rf $out/lib/${self.python.libPrefix}/site-packages/rhodecode/tests - ''; - - postInstall = '' - # check required files - STATIC_CHECK="/robots.txt /502.html - /js/scripts.min.js /js/rhodecode-components.js - /css/style.css /css/style-polymer.css /css/style-ipython.css" - - for file in $STATIC_CHECK; - do - if [ ! -f rhodecode/public/$file ]; then - echo "Missing $file" - exit 1 - fi - done - - echo "Writing enterprise-ce meta information for rccontrol to nix-support/rccontrol" - mkdir -p $out/nix-support/rccontrol - cp -v rhodecode/VERSION $out/nix-support/rccontrol/version - echo "[DONE ]: enterprise-ce meta information for rccontrol written" - - mkdir -p $out/etc - cp configs/production.ini $out/etc - echo "[DONE ]: saved enterprise-ce production.ini into $out/etc" - - echo "saving env in $out/etc/env_vars.txt" - touch $out/etc/env_vars.txt - echo "# RhodeCode build env vars" >> $out/etc/env_vars.txt - echo "LOCALE_ARCHIVE=\"${pkgs.glibcLocales}/lib/locale/locale-archive\"" >> $out/etc/env_vars.txt - echo "LC_ALL=\"en_US.UTF-8\"" >> $out/etc/env_vars.txt - - cp -Rf rhodecode/config/rcextensions $out/etc/rcextensions.tmpl - echo "[DONE ]: saved enterprise-ce rcextensions into $out/etc/rcextensions.tmpl" - - # python based programs need to be wrapped - mkdir -p $out/bin - - # expose python - ln -s ${pythonWithEnv}/bin/python $out/bin/ - - # required binaries from dependencies - ln -s ${pythonWithEnv}/bin/supervisorctl $out/bin/ - ln -s ${pythonWithEnv}/bin/supervisord $out/bin/ - ln -s ${pythonWithEnv}/bin/paster $out/bin/ - ln -s ${pythonWithEnv}/bin/channelstream $out/bin/ - ln -s ${pythonWithEnv}/bin/celery $out/bin/ - ln -s ${pythonWithEnv}/bin/gunicorn $out/bin/ - ln -s ${pythonWithEnv}/bin/prequest $out/bin/ - ln -s ${pythonWithEnv}/bin/pserve $out/bin/ - - echo "[DONE ]: created symlinks into $out/bin" - DEPS=" - " - - # wrap only dependency scripts, they require to have full PYTHONPATH set - # to be able to import all packages - for file in $DEPS; - do - wrapProgram $file \ - --prefix PATH : $PATH \ - --prefix PYTHONPATH : $PYTHONPATH \ - --set PYTHONHASHSEED random - done - - echo "[DONE ]: enterprise-ce binary wrapping" - - # rhodecode-tools don't need wrapping - ln -s ${self.rhodecode-tools}/bin/rhodecode-* $out/bin/ - - # expose static files folder - cp -Rf $out/lib/${self.python.libPrefix}/site-packages/rhodecode/public/ $out/etc/static - chmod 755 -R $out/etc/static - - # expose sources of rhodecode-enterprise-ce - ln -s $out $out/etc/rhodecode_enterprise_ce_source - ''; - - }); - }; - - - basePythonPackages = with builtins; - if isAttrs pythonPackages then - pythonPackages - else - getAttr pythonPackages pkgs; - - pythonGeneratedPackages = import ./pkgs/python-packages.nix { - inherit pkgs; - inherit (pkgs) fetchurl fetchgit fetchhg; - }; - - pythonCommunityOverrides = import ./pkgs/python-packages-overrides.nix { - inherit pkgs basePythonPackages; - }; - - # Apply all overrides and fix the final package set - myPythonPackagesUnfix = with pkgs.lib; - (extends pythonExternalOverrides - (extends pythonLocalOverrides - (extends pythonCommunityOverrides - (extends pythonGeneratedPackages - basePythonPackagesUnfix)))); - - myPythonPackages = (pkgs.lib.fix myPythonPackagesUnfix); - -in myPythonPackages.rhodecode-enterprise-ce diff --git a/pip2nix.ini b/pip2nix.ini deleted file mode 100644 --- a/pip2nix.ini +++ /dev/null @@ -1,3 +0,0 @@ -[pip2nix] -requirements = ., -r ./requirements.txt, -r ./requirements_pinned.txt -output = ./pkgs/python-packages.nix diff --git a/pkgs/README.rst b/pkgs/README.rst deleted file mode 100644 --- a/pkgs/README.rst +++ /dev/null @@ -1,57 +0,0 @@ - -============================== - Generate the Nix expressions -============================== - -Details can be found in the repository of `RhodeCode Enterprise CE`_ inside of -the file `docs/contributing/dependencies.rst`. - -Start the environment as follows: - -.. code:: shell - - nix-shell pkgs/shell-generate.nix - - - -Python dependencies -=================== - -.. code:: shell - - pip2nix generate --licenses - # or - nix-shell pkgs/shell-generate.nix --command "pip2nix generate --licenses" - - -NodeJS dependencies -=================== - -Generate node-packages.nix file with all dependencies from NPM and package.json file -This should be run before entering nix-shell. - -The sed at the end fixes a bug with http rewrite of re-generated packages - -.. code:: shell - - rm -rf node_modules && - nix-shell pkgs/shell-generate.nix --command " - node2nix --input package.json \ - -o pkgs/node-packages.nix \ - -e pkgs/node-env.nix \ - -c pkgs/node-default.nix \ - -d --flatten --nodejs-8 " && - sed -i -e 's/http:\/\//https:\/\//g' pkgs/node-packages.nix - - -Generate license data -===================== - -.. code:: shell - - nix-build pkgs/license-generate.nix -o result-license && cat result-license/licenses.json | python -m json.tool > rhodecode/config/licenses.json - - -.. Links - -.. _RhodeCode Enterprise CE: https://code.rhodecode.com/rhodecode-enterprise-ce diff --git a/pkgs/license-generate.nix b/pkgs/license-generate.nix deleted file mode 100644 --- a/pkgs/license-generate.nix +++ /dev/null @@ -1,159 +0,0 @@ -# Utility to generate the license information -# -# Usage: -# -# nix-build license.nix -o result-license -# -# Afterwards ./result-license will contain the license information as JSON files. -# -# -# Overview -# -# Uses two steps to get the relevant license information: -# -# 1. Walk down the derivations based on "buildInputs" and -# "propagatedBuildInputs". This results in all dependencies based on the nix -# declartions. -# -# 2. Build Enterprise and query nix-store to get a list of runtime -# dependencies. The results from step 1 are then limited to the ones which -# are in this list. -# -# The result is then available in ./result-license/license.json. -# - - -let - - nixpkgs = import {}; - - stdenv = nixpkgs.stdenv; - - # Enterprise as simple as possible, goal here is just to identify the runtime - # dependencies. Ideally we could avoid building Enterprise at all and somehow - # figure it out without calling into nix-store. - enterprise = import ../default.nix { - doCheck = false; - }; - - # For a given derivation, return the list of all dependencies - drvToDependencies = drv: nixpkgs.lib.flatten [ - drv.buildInputs or [] - drv.propagatedBuildInputs or [] - ]; - - # Transform the given derivation into the meta information which we need in - # the resulting JSON files. - drvToMeta = drv: { - name = drv.name or drv; - license = if drv ? meta.license then drv.meta.license else "UNKNOWN"; - }; - - # Walk the tree of buildInputs and propagatedBuildInputs and return it as a - # flat list. Duplicates are avoided. - listDrvDependencies = drv: let - addElement = element: seen: - if (builtins.elem element seen) - then seen - else let - newSeen = seen ++ [ element ]; - newDeps = drvToDependencies element; - in nixpkgs.lib.fold addElement newSeen newDeps; - initialElements = drvToDependencies drv; - in nixpkgs.lib.fold addElement [] initialElements; - - # Reads in a file with store paths and returns a list of derivation names. - # - # Reads the file, splits the lines, then removes the prefix, so that we - # end up with a list of derivation names in the end. - storePathsToDrvNames = srcPath: let - rawStorePaths = nixpkgs.lib.removeSuffix "\n" ( - builtins.readFile srcPath); - storePaths = nixpkgs.lib.splitString "\n" rawStorePaths; - storePathPrefix = ( - builtins.stringLength "/nix/store/afafafafafafafafafafafafafafafaf-"); - storePathToName = path: - builtins.substring storePathPrefix (builtins.stringLength path) path; - in (map storePathToName storePaths); - -in rec { - - # Build Enterprise and call nix-store to retrieve the runtime - # dependencies. The result is available in the nix store. - runtimeDependencies = stdenv.mkDerivation { - name = "runtime-dependencies"; - buildInputs = [ - # Needed to query the store - nixpkgs.nix - ]; - unpackPhase = '' - echo "Nothing to unpack" - ''; - buildPhase = '' - # Get a list of runtime dependencies - nix-store -q --references ${enterprise} > nix-store-references - ''; - installPhase = '' - mkdir -p $out - cp -v nix-store-references $out/ - ''; - }; - - # Produce the license overview files. - result = let - - # Dependencies according to the nix-store - runtimeDependencyNames = ( - storePathsToDrvNames "${runtimeDependencies}/nix-store-references"); - - # Dependencies based on buildInputs and propagatedBuildInputs - enterpriseAllDependencies = listDrvDependencies enterprise; - enterpriseRuntimeDependencies = let - elemName = element: element.name or "UNNAMED"; - isRuntime = element: builtins.elem (elemName element) runtimeDependencyNames; - in builtins.filter isRuntime enterpriseAllDependencies; - - # Extract relevant meta information - enterpriseAllLicenses = map drvToMeta enterpriseAllDependencies; - enterpriseRuntimeLicenses = map drvToMeta enterpriseRuntimeDependencies; - - in stdenv.mkDerivation { - - name = "licenses"; - - buildInputs = []; - - unpackPhase = '' - echo "Nothing to unpack" - ''; - - buildPhase = '' - mkdir build - - # Copy list of runtime dependencies for the Python processor - cp "${runtimeDependencies}/nix-store-references" ./build/nix-store-references - - # All licenses which we found by walking buildInputs and - # propagatedBuildInputs - cat > build/all-licenses.json < build/licenses.json < { - inherit system; - }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-12_x"}: - -let - nodeEnv = import ./node-env.nix { - inherit (pkgs) stdenv python2 utillinux runCommand writeTextFile; - inherit nodejs; - libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null; - }; -in -import ./node-packages.nix { - inherit (pkgs) fetchurl fetchgit; - inherit nodeEnv; -} \ No newline at end of file diff --git a/pkgs/node-env.nix b/pkgs/node-env.nix deleted file mode 100644 --- a/pkgs/node-env.nix +++ /dev/null @@ -1,542 +0,0 @@ -# This file originates from node2nix - -{stdenv, nodejs, python2, utillinux, libtool, runCommand, writeTextFile}: - -let - python = if nodejs ? python then nodejs.python else python2; - - # Create a tar wrapper that filters all the 'Ignoring unknown extended header keyword' noise - tarWrapper = runCommand "tarWrapper" {} '' - mkdir -p $out/bin - - cat > $out/bin/tar <> $out/nix-support/hydra-build-products - ''; - }; - - includeDependencies = {dependencies}: - stdenv.lib.optionalString (dependencies != []) - (stdenv.lib.concatMapStrings (dependency: - '' - # Bundle the dependencies of the package - mkdir -p node_modules - cd node_modules - - # Only include dependencies if they don't exist. They may also be bundled in the package. - if [ ! -e "${dependency.name}" ] - then - ${composePackage dependency} - fi - - cd .. - '' - ) dependencies); - - # Recursively composes the dependencies of a package - composePackage = { name, packageName, src, dependencies ? [], ... }@args: - builtins.addErrorContext "while evaluating node package '${packageName}'" '' - DIR=$(pwd) - cd $TMPDIR - - unpackFile ${src} - - # Make the base dir in which the target dependency resides first - mkdir -p "$(dirname "$DIR/${packageName}")" - - if [ -f "${src}" ] - then - # Figure out what directory has been unpacked - packageDir="$(find . -maxdepth 1 -type d | tail -1)" - - # Restore write permissions to make building work - find "$packageDir" -type d -exec chmod u+x {} \; - chmod -R u+w "$packageDir" - - # Move the extracted tarball into the output folder - mv "$packageDir" "$DIR/${packageName}" - elif [ -d "${src}" ] - then - # Get a stripped name (without hash) of the source directory. - # On old nixpkgs it's already set internally. - if [ -z "$strippedName" ] - then - strippedName="$(stripHash ${src})" - fi - - # Restore write permissions to make building work - chmod -R u+w "$strippedName" - - # Move the extracted directory into the output folder - mv "$strippedName" "$DIR/${packageName}" - fi - - # Unset the stripped name to not confuse the next unpack step - unset strippedName - - # Include the dependencies of the package - cd "$DIR/${packageName}" - ${includeDependencies { inherit dependencies; }} - cd .. - ${stdenv.lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."} - ''; - - pinpointDependencies = {dependencies, production}: - let - pinpointDependenciesFromPackageJSON = writeTextFile { - name = "pinpointDependencies.js"; - text = '' - var fs = require('fs'); - var path = require('path'); - - function resolveDependencyVersion(location, name) { - if(location == process.env['NIX_STORE']) { - return null; - } else { - var dependencyPackageJSON = path.join(location, "node_modules", name, "package.json"); - - if(fs.existsSync(dependencyPackageJSON)) { - var dependencyPackageObj = JSON.parse(fs.readFileSync(dependencyPackageJSON)); - - if(dependencyPackageObj.name == name) { - return dependencyPackageObj.version; - } - } else { - return resolveDependencyVersion(path.resolve(location, ".."), name); - } - } - } - - function replaceDependencies(dependencies) { - if(typeof dependencies == "object" && dependencies !== null) { - for(var dependency in dependencies) { - var resolvedVersion = resolveDependencyVersion(process.cwd(), dependency); - - if(resolvedVersion === null) { - process.stderr.write("WARNING: cannot pinpoint dependency: "+dependency+", context: "+process.cwd()+"\n"); - } else { - dependencies[dependency] = resolvedVersion; - } - } - } - } - - /* Read the package.json configuration */ - var packageObj = JSON.parse(fs.readFileSync('./package.json')); - - /* Pinpoint all dependencies */ - replaceDependencies(packageObj.dependencies); - if(process.argv[2] == "development") { - replaceDependencies(packageObj.devDependencies); - } - replaceDependencies(packageObj.optionalDependencies); - - /* Write the fixed package.json file */ - fs.writeFileSync("package.json", JSON.stringify(packageObj, null, 2)); - ''; - }; - in - '' - node ${pinpointDependenciesFromPackageJSON} ${if production then "production" else "development"} - - ${stdenv.lib.optionalString (dependencies != []) - '' - if [ -d node_modules ] - then - cd node_modules - ${stdenv.lib.concatMapStrings (dependency: pinpointDependenciesOfPackage dependency) dependencies} - cd .. - fi - ''} - ''; - - # Recursively traverses all dependencies of a package and pinpoints all - # dependencies in the package.json file to the versions that are actually - # being used. - - pinpointDependenciesOfPackage = { packageName, dependencies ? [], production ? true, ... }@args: - '' - if [ -d "${packageName}" ] - then - cd "${packageName}" - ${pinpointDependencies { inherit dependencies production; }} - cd .. - ${stdenv.lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."} - fi - ''; - - # Extract the Node.js source code which is used to compile packages with - # native bindings - nodeSources = runCommand "node-sources" {} '' - tar --no-same-owner --no-same-permissions -xf ${nodejs.src} - mv node-* $out - ''; - - # Script that adds _integrity fields to all package.json files to prevent NPM from consulting the cache (that is empty) - addIntegrityFieldsScript = writeTextFile { - name = "addintegrityfields.js"; - text = '' - var fs = require('fs'); - var path = require('path'); - - function augmentDependencies(baseDir, dependencies) { - for(var dependencyName in dependencies) { - var dependency = dependencies[dependencyName]; - - // Open package.json and augment metadata fields - var packageJSONDir = path.join(baseDir, "node_modules", dependencyName); - var packageJSONPath = path.join(packageJSONDir, "package.json"); - - if(fs.existsSync(packageJSONPath)) { // Only augment packages that exist. Sometimes we may have production installs in which development dependencies can be ignored - console.log("Adding metadata fields to: "+packageJSONPath); - var packageObj = JSON.parse(fs.readFileSync(packageJSONPath)); - - if(dependency.integrity) { - packageObj["_integrity"] = dependency.integrity; - } else { - packageObj["_integrity"] = "sha1-000000000000000000000000000="; // When no _integrity string has been provided (e.g. by Git dependencies), add a dummy one. It does not seem to harm and it bypasses downloads. - } - - if(dependency.resolved) { - packageObj["_resolved"] = dependency.resolved; // Adopt the resolved property if one has been provided - } else { - packageObj["_resolved"] = dependency.version; // Set the resolved version to the version identifier. This prevents NPM from cloning Git repositories. - } - - if(dependency.from !== undefined) { // Adopt from property if one has been provided - packageObj["_from"] = dependency.from; - } - - fs.writeFileSync(packageJSONPath, JSON.stringify(packageObj, null, 2)); - } - - // Augment transitive dependencies - if(dependency.dependencies !== undefined) { - augmentDependencies(packageJSONDir, dependency.dependencies); - } - } - } - - if(fs.existsSync("./package-lock.json")) { - var packageLock = JSON.parse(fs.readFileSync("./package-lock.json")); - - if(packageLock.lockfileVersion !== 1) { - process.stderr.write("Sorry, I only understand lock file version 1!\n"); - process.exit(1); - } - - if(packageLock.dependencies !== undefined) { - augmentDependencies(".", packageLock.dependencies); - } - } - ''; - }; - - # Reconstructs a package-lock file from the node_modules/ folder structure and package.json files with dummy sha1 hashes - reconstructPackageLock = writeTextFile { - name = "addintegrityfields.js"; - text = '' - var fs = require('fs'); - var path = require('path'); - - var packageObj = JSON.parse(fs.readFileSync("package.json")); - - var lockObj = { - name: packageObj.name, - version: packageObj.version, - lockfileVersion: 1, - requires: true, - dependencies: {} - }; - - function augmentPackageJSON(filePath, dependencies) { - var packageJSON = path.join(filePath, "package.json"); - if(fs.existsSync(packageJSON)) { - var packageObj = JSON.parse(fs.readFileSync(packageJSON)); - dependencies[packageObj.name] = { - version: packageObj.version, - integrity: "sha1-000000000000000000000000000=", - dependencies: {} - }; - processDependencies(path.join(filePath, "node_modules"), dependencies[packageObj.name].dependencies); - } - } - - function processDependencies(dir, dependencies) { - if(fs.existsSync(dir)) { - var files = fs.readdirSync(dir); - - files.forEach(function(entry) { - var filePath = path.join(dir, entry); - var stats = fs.statSync(filePath); - - if(stats.isDirectory()) { - if(entry.substr(0, 1) == "@") { - // When we encounter a namespace folder, augment all packages belonging to the scope - var pkgFiles = fs.readdirSync(filePath); - - pkgFiles.forEach(function(entry) { - if(stats.isDirectory()) { - var pkgFilePath = path.join(filePath, entry); - augmentPackageJSON(pkgFilePath, dependencies); - } - }); - } else { - augmentPackageJSON(filePath, dependencies); - } - } - }); - } - } - - processDependencies("node_modules", lockObj.dependencies); - - fs.writeFileSync("package-lock.json", JSON.stringify(lockObj, null, 2)); - ''; - }; - - prepareAndInvokeNPM = {packageName, bypassCache, reconstructLock, npmFlags, production}: - let - forceOfflineFlag = if bypassCache then "--offline" else "--registry http://www.example.com"; - in - '' - # Pinpoint the versions of all dependencies to the ones that are actually being used - echo "pinpointing versions of dependencies..." - source $pinpointDependenciesScriptPath - - # Patch the shebangs of the bundled modules to prevent them from - # calling executables outside the Nix store as much as possible - patchShebangs . - - # Deploy the Node.js package by running npm install. Since the - # dependencies have been provided already by ourselves, it should not - # attempt to install them again, which is good, because we want to make - # it Nix's responsibility. If it needs to install any dependencies - # anyway (e.g. because the dependency parameters are - # incomplete/incorrect), it fails. - # - # The other responsibilities of NPM are kept -- version checks, build - # steps, postprocessing etc. - - export HOME=$TMPDIR - cd "${packageName}" - runHook preRebuild - - ${stdenv.lib.optionalString bypassCache '' - ${stdenv.lib.optionalString reconstructLock '' - if [ -f package-lock.json ] - then - echo "WARNING: Reconstruct lock option enabled, but a lock file already exists!" - echo "This will most likely result in version mismatches! We will remove the lock file and regenerate it!" - rm package-lock.json - else - echo "No package-lock.json file found, reconstructing..." - fi - - node ${reconstructPackageLock} - ''} - - node ${addIntegrityFieldsScript} - ''} - - npm ${forceOfflineFlag} --nodedir=${nodeSources} ${npmFlags} ${stdenv.lib.optionalString production "--production"} rebuild - - if [ "''${dontNpmInstall-}" != "1" ] - then - # NPM tries to download packages even when they already exist if npm-shrinkwrap is used. - rm -f npm-shrinkwrap.json - - npm ${forceOfflineFlag} --nodedir=${nodeSources} ${npmFlags} ${stdenv.lib.optionalString production "--production"} install - fi - ''; - - # Builds and composes an NPM package including all its dependencies - buildNodePackage = - { name - , packageName - , version - , dependencies ? [] - , buildInputs ? [] - , production ? true - , npmFlags ? "" - , dontNpmInstall ? false - , bypassCache ? false - , reconstructLock ? false - , preRebuild ? "" - , dontStrip ? true - , unpackPhase ? "true" - , buildPhase ? "true" - , ... }@args: - - let - extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" "dontStrip" "dontNpmInstall" "preRebuild" "unpackPhase" "buildPhase" ]; - in - stdenv.mkDerivation ({ - name = "node_${name}-${version}"; - buildInputs = [ tarWrapper python nodejs ] - ++ stdenv.lib.optional (stdenv.isLinux) utillinux - ++ stdenv.lib.optional (stdenv.isDarwin) libtool - ++ buildInputs; - - inherit nodejs; - - inherit dontStrip; # Stripping may fail a build for some package deployments - inherit dontNpmInstall preRebuild unpackPhase buildPhase; - - compositionScript = composePackage args; - pinpointDependenciesScript = pinpointDependenciesOfPackage args; - - passAsFile = [ "compositionScript" "pinpointDependenciesScript" ]; - - installPhase = '' - # Create and enter a root node_modules/ folder - mkdir -p $out/lib/node_modules - cd $out/lib/node_modules - - # Compose the package and all its dependencies - source $compositionScriptPath - - ${prepareAndInvokeNPM { inherit packageName bypassCache reconstructLock npmFlags production; }} - - # Create symlink to the deployed executable folder, if applicable - if [ -d "$out/lib/node_modules/.bin" ] - then - ln -s $out/lib/node_modules/.bin $out/bin - fi - - # Create symlinks to the deployed manual page folders, if applicable - if [ -d "$out/lib/node_modules/${packageName}/man" ] - then - mkdir -p $out/share - for dir in "$out/lib/node_modules/${packageName}/man/"* - do - mkdir -p $out/share/man/$(basename "$dir") - for page in "$dir"/* - do - ln -s $page $out/share/man/$(basename "$dir") - done - done - fi - - # Run post install hook, if provided - runHook postInstall - ''; - } // extraArgs); - - # Builds a development shell - buildNodeShell = - { name - , packageName - , version - , src - , dependencies ? [] - , buildInputs ? [] - , production ? true - , npmFlags ? "" - , dontNpmInstall ? false - , bypassCache ? false - , reconstructLock ? false - , dontStrip ? true - , unpackPhase ? "true" - , buildPhase ? "true" - , ... }@args: - - let - extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" ]; - - nodeDependencies = stdenv.mkDerivation ({ - name = "node-dependencies-${name}-${version}"; - - buildInputs = [ tarWrapper python nodejs ] - ++ stdenv.lib.optional (stdenv.isLinux) utillinux - ++ stdenv.lib.optional (stdenv.isDarwin) libtool - ++ buildInputs; - - inherit dontStrip; # Stripping may fail a build for some package deployments - inherit dontNpmInstall unpackPhase buildPhase; - - includeScript = includeDependencies { inherit dependencies; }; - pinpointDependenciesScript = pinpointDependenciesOfPackage args; - - passAsFile = [ "includeScript" "pinpointDependenciesScript" ]; - - installPhase = '' - mkdir -p $out/${packageName} - cd $out/${packageName} - - source $includeScriptPath - - # Create fake package.json to make the npm commands work properly - cp ${src}/package.json . - chmod 644 package.json - ${stdenv.lib.optionalString bypassCache '' - if [ -f ${src}/package-lock.json ] - then - cp ${src}/package-lock.json . - fi - ''} - - # Go to the parent folder to make sure that all packages are pinpointed - cd .. - ${stdenv.lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."} - - ${prepareAndInvokeNPM { inherit packageName bypassCache reconstructLock npmFlags production; }} - - # Expose the executables that were installed - cd .. - ${stdenv.lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."} - - mv ${packageName} lib - ln -s $out/lib/node_modules/.bin $out/bin - ''; - } // extraArgs); - in - stdenv.mkDerivation { - name = "node-shell-${name}-${version}"; - - buildInputs = [ python nodejs ] ++ stdenv.lib.optional (stdenv.isLinux) utillinux ++ buildInputs; - buildCommand = '' - mkdir -p $out/bin - cat > $out/bin/shell <=40.7", "wheel", "setuptools_scm>=1.15"] -+requires = ["setuptools<=42.0", "wheel", "setuptools_scm<6.0.0"] - build-backend = "setuptools.build_meta" - - [tool.black] diff --git a/pkgs/patches/importlib_metadata/pyproject.patch b/pkgs/patches/importlib_metadata/pyproject.patch deleted file mode 100644 --- a/pkgs/patches/importlib_metadata/pyproject.patch +++ /dev/null @@ -1,7 +0,0 @@ -diff -rup importlib-metadata-1.6.0-orig/yproject.toml importlib-metadata-1.6.0/pyproject.toml ---- importlib-metadata-1.6.0-orig/yproject.toml 2021-03-22 22:10:33.000000000 +0100 -+++ importlib-metadata-1.6.0/pyproject.toml 2021-03-22 22:11:09.000000000 +0100 -@@ -1,3 +1,3 @@ - [build-system] --requires = ["setuptools>=30.3", "wheel", "setuptools_scm"] -+requires = ["setuptools<42.0", "wheel", "setuptools_scm<6.0.0"] diff --git a/pkgs/patches/pyramid_apispec/setuptools.patch b/pkgs/patches/pyramid_apispec/setuptools.patch deleted file mode 100644 --- a/pkgs/patches/pyramid_apispec/setuptools.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -rup pyramid-apispec-0.3.2-orig/setup.py pyramid-apispec-0.3.2/setup.py ---- pyramid-apispec-0.3.2-orig/setup.py 2021-03-11 11:19:26.000000000 +0100 -+++ pyramid-apispec-0.3.2/setup.py 2021-03-11 11:19:51.000000000 +0100 -@@ -44,7 +44,7 @@ setup( - packages=find_packages(exclude=["contrib", "docs", "tests"]), - package_data={"pyramid_apispec": ["static/*.*"], "": ["LICENSE"]}, - install_requires=["apispec[yaml]==1.0.0"], -- setup_requires=["pytest-runner"], -+ setup_requires=["pytest-runner==5.1"], - extras_require={ - "dev": ["coverage", "pytest", "pyramid", "tox", "webtest"], - "demo": ["marshmallow==2.15.3", "pyramid", "apispec", "webtest"], \ No newline at end of file diff --git a/pkgs/patches/pytest/setuptools.patch b/pkgs/patches/pytest/setuptools.patch deleted file mode 100644 --- a/pkgs/patches/pytest/setuptools.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -rup pytest-4.6.9-orig/setup.py pytest-4.6.9/setup.py ---- pytest-4.6.9-orig/setup.py 2018-04-10 10:23:04.000000000 +0200 -+++ pytest-4.6.9/setup.py 2018-04-10 10:23:34.000000000 +0200 -@@ -24,7 +24,7 @@ def main(): - def main(): - setup( - use_scm_version={"write_to": "src/_pytest/_version.py"}, -- setup_requires=["setuptools-scm", "setuptools>=40.0"], -+ setup_requires=["setuptools-scm<6.0.0", "setuptools<=42.0"], - package_dir={"": "src"}, - # fmt: off - extras_require={ \ No newline at end of file diff --git a/pkgs/patches/rhodecode_tools/requirements.patch b/pkgs/patches/rhodecode_tools/requirements.patch deleted file mode 100644 --- a/pkgs/patches/rhodecode_tools/requirements.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -rup rhodecode-tools-2.0.0-orig/requirements.txt rhodecode-tools-2.0.0/requirements.txt ---- rhodecode-tools-2.0.0/requirements-orig.txt 2021-03-11 12:34:45.000000000 +0100 -+++ rhodecode-tools-2.0.0/requirements.txt 2021-03-11 12:34:56.000000000 +0100 -@@ -40,8 +40,6 @@ ipython==5.1.0 - ipdb==0.13.2 - ipython==5.1.0 - --## test related requirements ---r requirements_test.txt - - ## uncomment to add the debug libraries - #-r requirements_debug.txt diff --git a/pkgs/patches/rhodecode_tools/setuptools.patch b/pkgs/patches/rhodecode_tools/setuptools.patch deleted file mode 100644 --- a/pkgs/patches/rhodecode_tools/setuptools.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff -rup rhodecode-tools-2.0.0-orig/setup.py rhodecode-tools-2.0.0/setup.py ---- rhodecode-tools-2.0.0/setup-orig.py 2021-03-11 12:34:45.000000000 +0100 -+++ rhodecode-tools-2.0.0/setup.py 2021-03-11 12:34:56.000000000 +0100 -@@ -98,8 +98,7 @@ install_requirements = _get_requirements( - setup_requirements = [] - install_requirements = _get_requirements( - 'requirements.txt', exclude=['setuptools']) --test_requirements = _get_requirements( -- 'requirements_test.txt') -+test_requirements = [] - - - def get_version(): diff --git a/pkgs/patches/supervisor/patch-rlimits-old-kernel.diff b/pkgs/patches/supervisor/patch-rlimits-old-kernel.diff deleted file mode 100644 --- a/pkgs/patches/supervisor/patch-rlimits-old-kernel.diff +++ /dev/null @@ -1,16 +0,0 @@ -diff -rup supervisor-3.3.4-orig/supervisor/options.py supervisor-3.3.4/supervisor/options.py ---- supervisor-3.3.4-orig/supervisor/options.py 1970-01-01 01:00:01.000000000 +0100 -+++ supervisor-3.3.4/supervisor-new/options.py 2018-10-24 10:53:19.368503735 +0200 -@@ -1395,7 +1395,11 @@ class ServerOptions(Options): - name = limit['name'] - name = name # name is used below by locals() - -- soft, hard = resource.getrlimit(res) -+ try: -+ soft, hard = resource.getrlimit(res) -+ except Exception: -+ # handle old kernel problems, this is not critical to execute -+ soft, hard = -1, -1 - - if (soft < min) and (soft != -1): # -1 means unlimited - if (hard < min) and (hard != -1): diff --git a/pkgs/patches/zipp/pyproject.patch b/pkgs/patches/zipp/pyproject.patch deleted file mode 100644 --- a/pkgs/patches/zipp/pyproject.patch +++ /dev/null @@ -1,10 +0,0 @@ -diff -rup zip-1.2.0-orig/pyproject.toml zip-1.2.0/pyproject.toml ---- zip-1.2.0-orig/pyproject.toml 2021-03-23 10:55:37.000000000 +0100 -+++ zip-1.2.0/pyproject.toml 2021-03-23 10:56:05.000000000 +0100 -@@ -1,5 +1,5 @@ - [build-system] --requires = ["setuptools>=34.4", "wheel", "setuptools_scm>=1.15"] -+requires = ["setuptools<42.0", "wheel", "setuptools_scm<6.0.0"] - build-backend = "setuptools.build_meta" - - [tool.black] diff --git a/pkgs/python-packages-overrides.nix b/pkgs/python-packages-overrides.nix deleted file mode 100644 --- a/pkgs/python-packages-overrides.nix +++ /dev/null @@ -1,348 +0,0 @@ -# Overrides for the generated python-packages.nix -# -# This function is intended to be used as an extension to the generated file -# python-packages.nix. The main objective is to add needed dependencies of C -# libraries and tweak the build instructions where needed. - -{ pkgs -, basePythonPackages -}: - -let - sed = "sed -i"; - - localLicenses = { - repoze = { - fullName = "Repoze License"; - url = http://www.repoze.org/LICENSE.txt; - }; - }; - -in - -self: super: { - - "appenlight-client" = super."appenlight-client".override (attrs: { - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }); - - "beaker" = super."beaker".override (attrs: { - patches = [ - ./patches/beaker/patch-beaker-lock-func-debug.diff - ./patches/beaker/patch-beaker-metadata-reuse.diff - ./patches/beaker/patch-beaker-improved-redis.diff - ./patches/beaker/patch-beaker-improved-redis-2.diff - ]; - }); - - "cffi" = super."cffi".override (attrs: { - buildInputs = [ - pkgs.libffi - ]; - }); - - "cryptography" = super."cryptography".override (attrs: { - buildInputs = [ - pkgs.openssl - ]; - }); - - "gevent" = super."gevent".override (attrs: { - propagatedBuildInputs = attrs.propagatedBuildInputs ++ [ - # NOTE: (marcink) odd requirements from gevent aren't set properly, - # thus we need to inject psutil manually - self."psutil" - ]; - }); - - "testpath" = super."testpath".override (attrs: { - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }); - - "gnureadline" = super."gnureadline".override (attrs: { - buildInputs = [ - pkgs.ncurses - ]; - patchPhase = '' - substituteInPlace setup.py --replace "/bin/bash" "${pkgs.bash}/bin/bash" - ''; - }); - - "gunicorn" = super."gunicorn".override (attrs: { - propagatedBuildInputs = [ - # johbo: futures is needed as long as we are on Python 2, otherwise - # gunicorn explodes if used with multiple threads per worker. - self."futures" - ]; - }); - - "nbconvert" = super."nbconvert".override (attrs: { - propagatedBuildInputs = attrs.propagatedBuildInputs ++ [ - # marcink: plug in jupyter-client for notebook rendering - self."jupyter-client" - ]; - }); - - "ipython" = super."ipython".override (attrs: { - propagatedBuildInputs = attrs.propagatedBuildInputs ++ [ - self."gnureadline" - ]; - }); - - "lxml" = super."lxml".override (attrs: { - buildInputs = [ - pkgs.libxml2 - pkgs.libxslt - ]; - propagatedBuildInputs = [ - # Needed, so that "setup.py bdist_wheel" does work - self."wheel" - ]; - }); - - "mysqlclient" = super."mysqlclient".override (attrs: { - buildInputs = [ - pkgs.openssl - ]; - propagatedBuildInputs = [ - pkgs.libmysql - pkgs.zlib - ]; - }); - - "psycopg2" = super."psycopg2".override (attrs: { - propagatedBuildInputs = [ - pkgs.postgresql - ]; - meta = { - license = pkgs.lib.licenses.lgpl3Plus; - }; - }); - - "pycurl" = super."pycurl".override (attrs: { - propagatedBuildInputs = [ - pkgs.curl - pkgs.openssl - ]; - - preConfigure = '' - substituteInPlace setup.py --replace '--static-libs' '--libs' - export PYCURL_SSL_LIBRARY=openssl - ''; - - meta = { - license = pkgs.lib.licenses.mit; - }; - }); - - "pyramid" = super."pyramid".override (attrs: { - meta = { - license = localLicenses.repoze; - }; - }); - - "pyramid-debugtoolbar" = super."pyramid-debugtoolbar".override (attrs: { - meta = { - license = [ pkgs.lib.licenses.bsdOriginal localLicenses.repoze ]; - }; - }); - - "pysqlite" = super."pysqlite".override (attrs: { - propagatedBuildInputs = [ - pkgs.sqlite - ]; - meta = { - license = [ pkgs.lib.licenses.zlib pkgs.lib.licenses.libpng ]; - }; - }); - - "python-ldap" = super."python-ldap".override (attrs: { - propagatedBuildInputs = attrs.propagatedBuildInputs ++ [ - pkgs.openldap - pkgs.cyrus_sasl - pkgs.openssl - ]; - }); - - "python-pam" = super."python-pam".override (attrs: { - propagatedBuildInputs = [ - pkgs.pam - ]; - - # TODO: johbo: Check if this can be avoided, or transform into - # a real patch - patchPhase = '' - substituteInPlace pam.py \ - --replace 'find_library("pam")' '"${pkgs.pam}/lib/libpam.so.0"' - ''; - - }); - - "python-saml" = super."python-saml".override (attrs: { - buildInputs = [ - pkgs.libxml2 - pkgs.libxslt - ]; - }); - - "dm.xmlsec.binding" = super."dm.xmlsec.binding".override (attrs: { - buildInputs = [ - pkgs.libxml2 - pkgs.libxslt - pkgs.xmlsec - pkgs.libtool - ]; - }); - - "pyzmq" = super."pyzmq".override (attrs: { - buildInputs = [ - pkgs.czmq - ]; - }); - - "urlobject" = super."urlobject".override (attrs: { - meta = { - license = { - spdxId = "Unlicense"; - fullName = "The Unlicense"; - url = http://unlicense.org/; - }; - }; - }); - - "docutils" = super."docutils".override (attrs: { - meta = { - license = pkgs.lib.licenses.bsd2; - }; - }); - - "colander" = super."colander".override (attrs: { - meta = { - license = localLicenses.repoze; - }; - }); - - "pyramid-beaker" = super."pyramid-beaker".override (attrs: { - meta = { - license = localLicenses.repoze; - }; - }); - - "pyramid-mako" = super."pyramid-mako".override (attrs: { - meta = { - license = localLicenses.repoze; - }; - }); - - "repoze.lru" = super."repoze.lru".override (attrs: { - meta = { - license = localLicenses.repoze; - }; - }); - - "python-editor" = super."python-editor".override (attrs: { - meta = { - license = pkgs.lib.licenses.asl20; - }; - }); - - "translationstring" = super."translationstring".override (attrs: { - meta = { - license = localLicenses.repoze; - }; - }); - - "venusian" = super."venusian".override (attrs: { - meta = { - license = localLicenses.repoze; - }; - }); - - "supervisor" = super."supervisor".override (attrs: { - patches = [ - ./patches/supervisor/patch-rlimits-old-kernel.diff - ]; - }); - - "pytest" = super."pytest".override (attrs: { - patches = [ - ./patches/pytest/setuptools.patch - ]; - }); - - "pytest-runner" = super."pytest-runner".override (attrs: { - propagatedBuildInputs = [ - self."setuptools-scm" - ]; - }); - - "py" = super."py".override (attrs: { - propagatedBuildInputs = [ - self."setuptools-scm" - ]; - }); - - "python-dateutil" = super."python-dateutil".override (attrs: { - propagatedBuildInputs = attrs.propagatedBuildInputs ++ [ - self."setuptools-scm" - ]; - }); - - "configparser" = super."configparser".override (attrs: { - patches = [ - ./patches/configparser/pyproject.patch - ]; - propagatedBuildInputs = [ - self."setuptools-scm" - ]; - }); - - "importlib-metadata" = super."importlib-metadata".override (attrs: { - - patches = [ - ./patches/importlib_metadata/pyproject.patch - ]; - - propagatedBuildInputs = attrs.propagatedBuildInputs ++ [ - self."setuptools-scm" - ]; - - }); - - "zipp" = super."zipp".override (attrs: { - patches = [ - ./patches/zipp/pyproject.patch - ]; - propagatedBuildInputs = attrs.propagatedBuildInputs ++ [ - self."setuptools-scm" - ]; - }); - - "pyramid-apispec" = super."pyramid-apispec".override (attrs: { - patches = [ - ./patches/pyramid_apispec/setuptools.patch - ]; - }); - - "channelstream" = super."channelstream".override (attrs: { - patches = [ - ./patches/channelstream/setuptools.patch - ]; - }); - - "rhodecode-tools" = super."rhodecode-tools".override (attrs: { - patches = [ - ./patches/rhodecode_tools/setuptools.patch - ./patches/rhodecode_tools/requirements.patch - ]; - }); - - # Avoid that base packages screw up the build process - inherit (basePythonPackages) - setuptools; - -} diff --git a/pkgs/python-packages.nix b/pkgs/python-packages.nix deleted file mode 100644 --- a/pkgs/python-packages.nix +++ /dev/null @@ -1,3562 +0,0 @@ -# Generated by pip2nix 0.9.0 -# See https://github.com/nix-community/pip2nix - -{ pkgs, fetchurl, fetchgit, fetchhg }: - -self: super: { - "alembic" = super.buildPythonPackage rec { - pname = "alembic"; - version = "1.4.2"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/60/1e/cabc75a189de0fbb2841d0975243e59bde8b7822bacbb95008ac6fe9ad47/alembic-1.4.2.tar.gz"; - sha256 = "1gsdrzx9h7wfva200qvvsc9sn4w79mk2vs0bbnzjhxi1jw2b0nh3"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."mako" - self."python-dateutil" - self."python-editor" - self."sqlalchemy" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "amqp" = super.buildPythonPackage rec { - pname = "amqp"; - version = "2.5.2"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/92/1d/433541994a5a69f4ad2fff39746ddbb0bdedb0ea0d85673eb0db68a7edd9/amqp-2.5.2.tar.gz"; - sha256 = "13dhhfxjrqcjybnq4zahg92mydhpg2l76nxcmq7d560687wsxwbp"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."vine" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "appenlight-client" = super.buildPythonPackage rec { - pname = "appenlight-client"; - version = "0.6.26"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/2e/56/418fc10379b96e795ee39a15e69a730c222818af04c3821fa354eaa859ec/appenlight_client-0.6.26.tar.gz"; - sha256 = "0s9xw3sb8s3pk73k78nnq4jil3q4mk6bczfa1fmgfx61kdxl2712"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."requests" - self."six" - self."webob" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "asn1crypto" = super.buildPythonPackage rec { - pname = "asn1crypto"; - version = "0.24.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/fc/f1/8db7daa71f414ddabfa056c4ef792e1461ff655c2ae2928a2b675bfed6b4/asn1crypto-0.24.0.tar.gz"; - sha256 = "0jaf8rf9dx1lf23xfv2cdd5h52f1qr3w8k63985bc35g3d220p4x"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "atomicwrites" = super.buildPythonPackage rec { - pname = "atomicwrites"; - version = "1.4.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/55/8d/74a75635f2c3c914ab5b3850112fd4b0c8039975ecb320e4449aa363ba54/atomicwrites-1.4.0.tar.gz"; - sha256 = "0yla2svfhfqrcj8qbyqzx7wi4jy0dwcxvlkg0k3zjd54s5m3jw5f"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "attrs" = super.buildPythonPackage rec { - pname = "attrs"; - version = "19.3.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/98/c3/2c227e66b5e896e15ccdae2e00bbc69aa46e9a8ce8869cc5fa96310bf612/attrs-19.3.0.tar.gz"; - sha256 = "0wky4h28n7xnr6xv69p9z6kv8bzn50d10c3drmd9ds8gawbcxdzp"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = [ - self."setuptools" - self."wheel" - ]; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "babel" = super.buildPythonPackage rec { - pname = "babel"; - version = "1.3"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/33/27/e3978243a03a76398c384c83f7ca879bc6e8f1511233a621fcada135606e/Babel-1.3.tar.gz"; - sha256 = "0bnin777lc53nxd1hp3apq410jj5wx92n08h7h4izpl4f4sx00lz"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."pytz" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "backports.shutil-get-terminal-size" = super.buildPythonPackage rec { - pname = "backports.shutil-get-terminal-size"; - version = "1.0.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/ec/9c/368086faa9c016efce5da3e0e13ba392c9db79e3ab740b763fe28620b18b/backports.shutil_get_terminal_size-1.0.0.tar.gz"; - sha256 = "107cmn7g3jnbkp826zlj8rrj19fam301qvaqf0f3905f5217lgki"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "beaker" = super.buildPythonPackage rec { - pname = "beaker"; - version = "1.9.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/ca/14/a626188d0d0c7b55dd7cf1902046c2743bd392a7078bb53073e13280eb1e/Beaker-1.9.1.tar.gz"; - sha256 = "08arsn61r255lhz6hcpn2lsiqpg30clla805ysx06wmbhvb6w9rj"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."funcsigs" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "beautifulsoup4" = super.buildPythonPackage rec { - pname = "beautifulsoup4"; - version = "4.6.3"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/88/df/86bffad6309f74f3ff85ea69344a078fc30003270c8df6894fca7a3c72ff/beautifulsoup4-4.6.3.tar.gz"; - sha256 = "041dhalzjciw6qyzzq7a2k4h1yvyk76xigp35hv5ibnn448ydy4h"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "billiard" = super.buildPythonPackage rec { - pname = "billiard"; - version = "3.6.1.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/68/1d/2aea8fbb0b1e1260a8a2e77352de2983d36d7ac01207cf14c2b9c6cc860e/billiard-3.6.1.0.tar.gz"; - sha256 = "09hzy3aqi7visy4vmf4xiish61n0rq5nd3iwjydydps8yrs9r05q"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "bleach" = super.buildPythonPackage rec { - pname = "bleach"; - version = "3.1.3"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/de/09/5267f8577a92487ed43bc694476c4629c6eca2e3c93fcf690a26bfe39e1d/bleach-3.1.3.tar.gz"; - sha256 = "0al437aw4p2xp83az5hhlrp913nsf0cg6kg4qj3fjhv4wakxipzq"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."six" - self."webencodings" - ]; - meta = { - license = [ pkgs.lib.licenses.asl20 ]; - }; - }; - "bumpversion" = super.buildPythonPackage rec { - pname = "bumpversion"; - version = "0.5.3"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/14/41/8c9da3549f8e00c84f0432c3a8cf8ed6898374714676aab91501d48760db/bumpversion-0.5.3.tar.gz"; - sha256 = "0zn7694yfipxg35ikkfh7kvgl2fissha3dnqad2c5bvsvmrwhi37"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "cachetools" = super.buildPythonPackage rec { - pname = "cachetools"; - version = "3.1.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/ae/37/7fd45996b19200e0cb2027a0b6bef4636951c4ea111bfad36c71287247f6/cachetools-3.1.1.tar.gz"; - sha256 = "16m69l6n6y1r1y7cklm92rr7v69ldig2n3lbl3j323w5jz7d78lf"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "celery" = super.buildPythonPackage rec { - pname = "celery"; - version = "4.3.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/a2/4b/d020836f751617e907e84753a41c92231cd4b673ff991b8ee9da52361323/celery-4.3.0.tar.gz"; - sha256 = "1y8y0gbgkwimpxqnxq2rm5qz2vy01fvjiybnpm00y5rzd2m34iac"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."billiard" - self."kombu" - self."pytz" - self."vine" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "certifi" = super.buildPythonPackage rec { - pname = "certifi"; - version = "2020.4.5.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/b8/e2/a3a86a67c3fc8249ed305fc7b7d290ebe5e4d46ad45573884761ef4dea7b/certifi-2020.4.5.1.tar.gz"; - sha256 = "06b5gfs7wmmipln8f3z928d2mmx2j4b3x7pnqmj6cvmyfh8v7z2i"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mpl20 { fullName = "Mozilla Public License 2.0 (MPL 2.0)"; } ]; - }; - }; - "cffi" = super.buildPythonPackage rec { - pname = "cffi"; - version = "1.12.3"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/93/1a/ab8c62b5838722f29f3daffcc8d4bd61844aa9b5f437341cc890ceee483b/cffi-1.12.3.tar.gz"; - sha256 = "0x075521fxwv0mfp4cqzk7lvmw4n94bjw601qkcv314z5s182704"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."pycparser" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "chameleon" = super.buildPythonPackage rec { - pname = "chameleon"; - version = "2.24"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/5a/9e/637379ffa13c5172b5c0e704833ffea6bf51cec7567f93fd6e903d53ed74/Chameleon-2.24.tar.gz"; - sha256 = "0ykqr7syxfa6h9adjfnsv1gdsca2xzm22vmic8859n0f0j09abj5"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ { fullName = "BSD-like (http://repoze.org/license.html)"; } ]; - }; - }; - "channelstream" = super.buildPythonPackage rec { - pname = "channelstream"; - version = "0.5.2"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/2b/31/29a8e085cf5bf97fa88e7b947adabfc581a18a3463adf77fb6dada34a65f/channelstream-0.5.2.tar.gz"; - sha256 = "1qbm4xdl5hfkja683x546bncg3rqq8qv79w1m1a1wd48cqqzb6rm"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."gevent" - self."itsdangerous" - self."pyramid" - self."pyramid-jinja2" - self."requests" - self."six" - self."ws4py" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "chardet" = super.buildPythonPackage rec { - pname = "chardet"; - version = "3.0.4"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/fc/bb/a5768c230f9ddb03acc9ef3f0d4a3cf93462473795d18e9535498c8f929d/chardet-3.0.4.tar.gz"; - sha256 = "1bpalpia6r5x1kknbk11p1fzph56fmmnp405ds8icksd3knr5aw4"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ { fullName = "LGPL"; } { fullName = "GNU Library or Lesser General Public License (LGPL)"; } ]; - }; - }; - "click" = super.buildPythonPackage rec { - pname = "click"; - version = "7.1.2"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/27/6f/be940c8b1f1d69daceeb0032fee6c34d7bd70e3e649ccac0951500b4720e/click-7.1.2.tar.gz"; - sha256 = "06kbzd6sjfkqan3miwj9wqyddfxc2b6hi7p5s4dvqjb3gif2bdfj"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal pkgs.lib.licenses.bsd3 ]; - }; - }; - "colander" = super.buildPythonPackage rec { - pname = "colander"; - version = "1.7.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/db/e4/74ab06f54211917b41865cafc987ce511e35503de48da9bfe9358a1bdc3e/colander-1.7.0.tar.gz"; - sha256 = "1wl1bqab307lbbcjx81i28s3yl6dlm4rf15fxawkjb6j48x1cn6p"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = [ - self."setuptools" - self."wheel" - ]; - propagatedBuildInputs = [ - self."enum34" - self."iso8601" - self."translationstring" - ]; - meta = { - license = [ { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ]; - }; - }; - "configobj" = super.buildPythonPackage rec { - pname = "configobj"; - version = "5.0.6"; - src = fetchurl { - url = "https://code.rhodecode.com/upstream/configobj/artifacts/download/0-012de99a-b1e1-4f64-a5c0-07a98a41b324.tar.gz?md5=6a513f51fe04b2c18cf84c1395a7c626"; - sha256 = "0kqfrdfr14mw8yd8qwq14dv2xghpkjmd3yjsy8dfcbvpcc17xnxp"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."six" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "configparser" = super.buildPythonPackage rec { - pname = "configparser"; - version = "4.0.2"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/16/4f/48975536bd488d3a272549eb795ac4a13a5f7fcdc8995def77fbef3532ee/configparser-4.0.2.tar.gz"; - sha256 = "1priacxym85yjcf68hh38w55nqswaxp71ryjyfdk222kg9l85ln7"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = [ - self."setuptools" - self."wheel" - self."setuptools-scm" - ]; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "contextlib2" = super.buildPythonPackage rec { - pname = "contextlib2"; - version = "0.6.0.post1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/02/54/669207eb72e3d8ae8b38aa1f0703ee87a0e9f88f30d3c0a47bebdb6de242/contextlib2-0.6.0.post1.tar.gz"; - sha256 = "0bhnr2ac7wy5l85ji909gyljyk85n92w8pdvslmrvc8qih4r1x01"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.psfl ]; - }; - }; - "cookies" = super.buildPythonPackage rec { - pname = "cookies"; - version = "2.2.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/f3/95/b66a0ca09c5ec9509d8729e0510e4b078d2451c5e33f47bd6fc33c01517c/cookies-2.2.1.tar.gz"; - sha256 = "13pfndz8vbk4p2a44cfbjsypjarkrall71pgc97glk5fiiw9idnn"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "cov-core" = super.buildPythonPackage rec { - pname = "cov-core"; - version = "1.15.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/4b/87/13e75a47b4ba1be06f29f6d807ca99638bedc6b57fa491cd3de891ca2923/cov-core-1.15.0.tar.gz"; - sha256 = "0k3np9ymh06yv1ib96sb6wfsxjkqhmik8qfsn119vnhga9ywc52a"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."coverage" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "coverage" = super.buildPythonPackage rec { - pname = "coverage"; - version = "4.5.4"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/85/d5/818d0e603685c4a613d56f065a721013e942088047ff1027a632948bdae6/coverage-4.5.4.tar.gz"; - sha256 = "0p0j4di6h8k6ica7jwwj09azdcg4ycxq60i9qsskmsg94cd9yzg0"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.asl20 ]; - }; - }; - "cryptography" = super.buildPythonPackage rec { - pname = "cryptography"; - version = "2.6.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/07/ca/bc827c5e55918ad223d59d299fff92f3563476c3b00d0a9157d9c0217449/cryptography-2.6.1.tar.gz"; - sha256 = "19iwz5avym5zl6jrrrkym1rdaa9h61j20ph4cswsqgv8xg5j3j16"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = [ - self."setuptools" - self."wheel" - self."cffi" - ]; - propagatedBuildInputs = [ - self."asn1crypto" - self."cffi" - self."enum34" - self."ipaddress" - self."six" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal { fullName = "BSD or Apache License, Version 2.0"; } pkgs.lib.licenses.asl20 ]; - }; - }; - "cssselect" = super.buildPythonPackage rec { - pname = "cssselect"; - version = "1.0.3"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/52/ea/f31e1d2e9eb130fda2a631e22eac369dc644e8807345fbed5113f2d6f92b/cssselect-1.0.3.tar.gz"; - sha256 = "011jqa2jhmydhi0iz4v1w3cr540z5zas8g2bw8brdw4s4b2qnv86"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "cssutils" = super.buildPythonPackage rec { - pname = "cssutils"; - version = "1.0.2"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/5c/0b/c5f29d29c037e97043770b5e7c740b6252993e4b57f029b3cd03c78ddfec/cssutils-1.0.2.tar.gz"; - sha256 = "1bxchrbqzapwijap0yhlxdil1w9bmwvgx77aizlkhc2mcxjg1z52"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ { fullName = "GNU Library or Lesser General Public License (LGPL)"; } { fullName = "LGPL 2.1 or later, see also http://cthedot.de/cssutils/"; } ]; - }; - }; - "cython" = super.buildPythonPackage rec { - pname = "cython"; - version = "0.29.17"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/99/36/a3dc962cc6d08749aa4b9d85af08b6e354d09c5468a3e0edc610f44c856b/Cython-0.29.17.tar.gz"; - sha256 = "1wnaz40hdw4mg5acz5gqb6bhjhn4cvfxg0xdzfy7aa6qn665hqb3"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.asl20 { fullName = "Apache"; } ]; - }; - }; - "decorator" = super.buildPythonPackage rec { - pname = "decorator"; - version = "4.1.2"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/bb/e0/f6e41e9091e130bf16d4437dabbac3993908e4d6485ecbc985ef1352db94/decorator-4.1.2.tar.gz"; - sha256 = "1d8npb11kxyi36mrvjdpcjij76l5zfyrz2f820brf0l0rcw4vdkw"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal { fullName = "new BSD License"; } ]; - }; - }; - "deform" = super.buildPythonPackage rec { - pname = "deform"; - version = "2.0.8"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/21/d0/45fdf891a82722c02fc2da319cf2d1ae6b5abf9e470ad3762135a895a868/deform-2.0.8.tar.gz"; - sha256 = "0wbjv98sib96649aqaygzxnrkclyy50qij2rha6fn1i4c86bfdl9"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."chameleon" - self."colander" - self."iso8601" - self."peppercorn" - self."translationstring" - self."zope.deprecation" - ]; - meta = { - license = [ { fullName = "Repoze Public License"; } { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ]; - }; - }; - "defusedxml" = super.buildPythonPackage rec { - pname = "defusedxml"; - version = "0.6.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/a4/5f/f8aa58ca0cf01cbcee728abc9d88bfeb74e95e6cb4334cfd5bed5673ea77/defusedxml-0.6.0.tar.gz"; - sha256 = "1xbp8fivl3wlbyg2jrvs4lalaqv1xp9a9f29p75wdx2s2d6h717n"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.psfl ]; - }; - }; - "dm.xmlsec.binding" = super.buildPythonPackage rec { - pname = "dm.xmlsec.binding"; - version = "1.3.7"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/2c/9e/7651982d50252692991acdae614af821fd6c79bc8dcd598ad71d55be8fc7/dm.xmlsec.binding-1.3.7.tar.gz"; - sha256 = "03jjjscx1pz2nc0dwiw9nia02qbz1c6f0f9zkyr8fmvys2n5jkb3"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = [ - self."lxml" - ]; - propagatedBuildInputs = [ - self."lxml" - self."setuptools" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "docutils" = super.buildPythonPackage rec { - pname = "docutils"; - version = "0.16"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/2f/e0/3d435b34abd2d62e8206171892f174b180cd37b09d57b924ca5c2ef2219d/docutils-0.16.tar.gz"; - sha256 = "1z3qliszqca9m719q3qhdkh0ghh90g500avzdgi7pl77x5h3mpn2"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal pkgs.lib.licenses.publicDomain pkgs.lib.licenses.gpl1 { fullName = "public domain, Python, 2-Clause BSD, GPL 3 (see COPYING.txt)"; } pkgs.lib.licenses.psfl ]; - }; - }; - "dogpile.cache" = super.buildPythonPackage rec { - pname = "dogpile.cache"; - version = "0.9.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/ac/6a/9ac405686a94b7f009a20a50070a5786b0e1aedc707b88d40d0c4b51a82e/dogpile.cache-0.9.0.tar.gz"; - sha256 = "0sr1fn6b4k5bh0cscd9yi8csqxvj4ngzildav58x5p694mc86j5k"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."decorator" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "dogpile.core" = super.buildPythonPackage rec { - pname = "dogpile.core"; - version = "0.4.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/0e/77/e72abc04c22aedf874301861e5c1e761231c288b5de369c18be8f4b5c9bb/dogpile.core-0.4.1.tar.gz"; - sha256 = "0xpdvg4kr1isfkrh1rfsh7za4q5a5s6l2kf9wpvndbwf3aqjyrdy"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "ecdsa" = super.buildPythonPackage rec { - pname = "ecdsa"; - version = "0.13.2"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/51/76/139bf6e9b7b6684d5891212cdbd9e0739f2bfc03f380a1a6ffa700f392ac/ecdsa-0.13.2.tar.gz"; - sha256 = "116qaq7bh4lcynzi613960jhsnn19v0kmsqwahiwjfj14gx4y0sw"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "elasticsearch" = super.buildPythonPackage rec { - pname = "elasticsearch"; - version = "6.3.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/9d/ce/c4664e8380e379a9402ecfbaf158e56396da90d520daba21cfa840e0eb71/elasticsearch-6.3.1.tar.gz"; - sha256 = "12y93v0yn7a4xmf969239g8gb3l4cdkclfpbk1qc8hx5qkymrnma"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."urllib3" - ]; - meta = { - license = [ pkgs.lib.licenses.asl20 ]; - }; - }; - "elasticsearch-dsl" = super.buildPythonPackage rec { - pname = "elasticsearch-dsl"; - version = "6.3.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/4c/0d/1549f50c591db6bb4e66cbcc8d34a6e537c3d89aa426b167c244fd46420a/elasticsearch-dsl-6.3.1.tar.gz"; - sha256 = "1gh8a0shqi105k325hgwb9avrpdjh0mc6mxwfg9ba7g6lssb702z"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."elasticsearch" - self."ipaddress" - self."python-dateutil" - self."six" - ]; - meta = { - license = [ pkgs.lib.licenses.asl20 ]; - }; - }; - "elasticsearch1" = super.buildPythonPackage rec { - pname = "elasticsearch1"; - version = "1.10.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/a6/eb/73e75f9681fa71e3157b8ee878534235d57f24ee64f0e77f8d995fb57076/elasticsearch1-1.10.0.tar.gz"; - sha256 = "0g89444kd5zwql4vbvyrmi2m6l6dcj6ga98j4hqxyyyz6z20aki2"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."urllib3" - ]; - meta = { - license = [ pkgs.lib.licenses.asl20 ]; - }; - }; - "elasticsearch1-dsl" = super.buildPythonPackage rec { - pname = "elasticsearch1-dsl"; - version = "0.0.12"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/eb/9d/785342775cb10eddc9b8d7457d618a423b4f0b89d8b2b2d1bc27190d71db/elasticsearch1-dsl-0.0.12.tar.gz"; - sha256 = "0ig1ly39v93hba0z975wnhbmzwj28w6w1sqlr2g7cn5spp732bhk"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."elasticsearch1" - self."python-dateutil" - self."six" - ]; - meta = { - license = [ pkgs.lib.licenses.asl20 ]; - }; - }; - "elasticsearch2" = super.buildPythonPackage rec { - pname = "elasticsearch2"; - version = "2.5.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/f6/09/f9b24aa6b1120bea371cd57ef6f57c7694cf16660469456a8be6c2bdbe22/elasticsearch2-2.5.1.tar.gz"; - sha256 = "19k2znpjfyp0hrq73cz7pjyj289040xpsxsm0xhh4jfh6y551g7k"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."urllib3" - ]; - meta = { - license = [ pkgs.lib.licenses.asl20 ]; - }; - }; - "entrypoints" = super.buildPythonPackage rec { - pname = "entrypoints"; - version = "0.2.2"; - src = fetchurl { - url = "https://code.rhodecode.com/upstream/entrypoints/artifacts/download/0-8e9ee9e4-c4db-409c-b07e-81568fd1832d.tar.gz?md5=3a027b8ff1d257b91fe257de6c43357d"; - sha256 = "0qih72n2myclanplqipqxpgpj9d2yhff1pz5d02zq1cfqyd173w5"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."configparser" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "enum34" = super.buildPythonPackage rec { - pname = "enum34"; - version = "1.1.10"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/11/c4/2da1f4952ba476677a42f25cd32ab8aaf0e1c0d0e00b89822b835c7e654c/enum34-1.1.10.tar.gz"; - sha256 = "0j7ji699fwswm4vg6w1v07fkbf8dkzdm6gfh88jvs5nqgr3sgrnc"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "formencode" = super.buildPythonPackage rec { - pname = "formencode"; - version = "1.2.4"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/8e/59/0174271a6f004512e0201188593e6d319db139d14cb7490e488bbb078015/FormEncode-1.2.4.tar.gz"; - sha256 = "1fgy04sdy4yry5xcjls3x3xy30dqwj58ycnkndim819jx0788w42"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.psfl ]; - }; - }; - "funcsigs" = super.buildPythonPackage rec { - pname = "funcsigs"; - version = "1.0.2"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/94/4a/db842e7a0545de1cdb0439bb80e6e42dfe82aaeaadd4072f2263a4fbed23/funcsigs-1.0.2.tar.gz"; - sha256 = "0l4g5818ffyfmfs1a924811azhjj8ax9xd1cffr1mzd3ycn0zfx7"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ { fullName = "ASL"; } pkgs.lib.licenses.asl20 ]; - }; - }; - "functools32" = super.buildPythonPackage rec { - pname = "functools32"; - version = "3.2.3.post2"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/c5/60/6ac26ad05857c601308d8fb9e87fa36d0ebf889423f47c3502ef034365db/functools32-3.2.3-2.tar.gz"; - sha256 = "0v8ya0b58x47wp216n1zamimv4iw57cxz3xxhzix52jkw3xks9gn"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.psfl ]; - }; - }; - "future" = super.buildPythonPackage rec { - pname = "future"; - version = "0.14.3"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/83/80/8ef3a11a15f8eaafafa0937b20c1b3f73527e69ab6b3fa1cf94a5a96aabb/future-0.14.3.tar.gz"; - sha256 = "1savk7jx7hal032f522c5ajhh8fra6gmnadrj9adv5qxi18pv1b2"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ { fullName = "OSI Approved"; } pkgs.lib.licenses.mit ]; - }; - }; - "futures" = super.buildPythonPackage rec { - pname = "futures"; - version = "3.0.2"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/f8/e7/fc0fcbeb9193ba2d4de00b065e7fd5aecd0679e93ce95a07322b2b1434f4/futures-3.0.2.tar.gz"; - sha256 = "0mz2pbgxbc2nbib1szifi07whjbfs4r02pv2z390z7p410awjgyw"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "gevent" = super.buildPythonPackage rec { - pname = "gevent"; - version = "1.5.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/5a/79/2c63d385d017b5dd7d70983a463dfd25befae70c824fedb857df6e72eff2/gevent-1.5.0.tar.gz"; - sha256 = "0aac3d4vhv5n4rsb6cqzq0d1xx9immqz4fmpddw35yxkwdc450dj"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = [ - self."setuptools" - self."wheel" - self."cython" - self."cffi" - self."greenlet" - ]; - propagatedBuildInputs = [ - self."greenlet" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "gnureadline" = super.buildPythonPackage rec { - pname = "gnureadline"; - version = "6.3.8"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/50/64/86085c823cd78f9df9d8e33dce0baa71618016f8860460b82cf6610e1eb3/gnureadline-6.3.8.tar.gz"; - sha256 = "0ddhj98x2nv45iz4aadk4b9m0b1kpsn1xhcbypn5cd556knhiqjq"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ { fullName = "GNU General Public License v3 (GPLv3)"; } pkgs.lib.licenses.gpl1 ]; - }; - }; - "gprof2dot" = super.buildPythonPackage rec { - pname = "gprof2dot"; - version = "2017.9.19"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/9d/36/f977122502979f3dfb50704979c9ed70e6b620787942b089bf1af15f5aba/gprof2dot-2017.9.19.tar.gz"; - sha256 = "17ih23ld2nzgc3xwgbay911l6lh96jp1zshmskm17n1gg2i7mg6f"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ { fullName = "GNU Lesser General Public License v3 or later (LGPLv3+)"; } { fullName = "LGPL"; } ]; - }; - }; - "greenlet" = super.buildPythonPackage rec { - pname = "greenlet"; - version = "0.4.15"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/f8/e8/b30ae23b45f69aa3f024b46064c0ac8e5fcb4f22ace0dca8d6f9c8bbe5e7/greenlet-0.4.15.tar.gz"; - sha256 = "1g4g1wwc472ds89zmqlpyan3fbnzpa8qm48z3z1y6mlk44z485ll"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "gunicorn" = super.buildPythonPackage rec { - pname = "gunicorn"; - version = "19.9.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/47/52/68ba8e5e8ba251e54006a49441f7ccabca83b6bef5aedacb4890596c7911/gunicorn-19.9.0.tar.gz"; - sha256 = "1wzlf4xmn6qjirh5w81l6i6kqjnab1n1qqkh7zsj1yb6gh4n49ps"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "hupper" = super.buildPythonPackage rec { - pname = "hupper"; - version = "1.10.2"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/41/24/ea90fef04706e54bd1635c05c50dc9cf87cda543c59303a03e7aa7dda0ce/hupper-1.10.2.tar.gz"; - sha256 = "0am0p6g5cz6xmcaf04xq8q6dzdd9qz0phj6gcmpsckf2mcyza61q"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = [ - self."setuptools" - self."wheel" - ]; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "idna" = super.buildPythonPackage rec { - pname = "idna"; - version = "2.8"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/ad/13/eb56951b6f7950cadb579ca166e448ba77f9d24efc03edd7e55fa57d04b7/idna-2.8.tar.gz"; - sha256 = "01rlkigdxg17sf9yar1jl8n18ls59367wqh59hnawlyg53vb6my3"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal { fullName = "BSD-like"; } ]; - }; - }; - "importlib-metadata" = super.buildPythonPackage rec { - pname = "importlib-metadata"; - version = "1.6.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/b4/1b/baab42e3cd64c9d5caac25a9d6c054f8324cdc38975a44d600569f1f7158/importlib_metadata-1.6.0.tar.gz"; - sha256 = "07icyggasn38yv2swdrd8z6i0plazmc9adavsdkbqqj91j53ll9l"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = [ - self."setuptools" - self."wheel" - self."setuptools-scm" - ]; - propagatedBuildInputs = [ - self."configparser" - self."contextlib2" - self."pathlib2" - self."zipp" - ]; - meta = { - license = [ pkgs.lib.licenses.asl20 ]; - }; - }; - "infrae.cache" = super.buildPythonPackage rec { - pname = "infrae.cache"; - version = "1.0.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/bb/f0/e7d5e984cf6592fd2807dc7bc44a93f9d18e04e6a61f87fdfb2622422d74/infrae.cache-1.0.1.tar.gz"; - sha256 = "1dvqsjn8vw253wz9d1pz17j79mf4bs53dvp2qxck2qdp1am1njw4"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."beaker" - self."repoze.lru" - ]; - meta = { - license = [ pkgs.lib.licenses.zpl21 ]; - }; - }; - "invoke" = super.buildPythonPackage rec { - pname = "invoke"; - version = "0.13.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/47/bf/d07ef52fa1ac645468858bbac7cb95b246a972a045e821493d17d89c81be/invoke-0.13.0.tar.gz"; - sha256 = "0794vhgxfmkh0vzkkg5cfv1w82g3jc3xr18wim29far9qpx9468s"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "ipaddress" = super.buildPythonPackage rec { - pname = "ipaddress"; - version = "1.0.23"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/b9/9a/3e9da40ea28b8210dd6504d3fe9fe7e013b62bf45902b458d1cdc3c34ed9/ipaddress-1.0.23.tar.gz"; - sha256 = "1qp743h30s04m3cg3yk3fycad930jv17q7dsslj4mfw0jlvf1y5p"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.psfl ]; - }; - }; - "ipdb" = super.buildPythonPackage rec { - pname = "ipdb"; - version = "0.13.2"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/2c/bb/a3e1a441719ebd75c6dac8170d3ddba884b7ee8a5c0f9aefa7297386627a/ipdb-0.13.2.tar.gz"; - sha256 = "0jcd849rx30y3wcgzsqbn06v0yjlzvb9x3076q0yxpycdwm1ryvp"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."ipython" - self."setuptools" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "ipython" = super.buildPythonPackage rec { - pname = "ipython"; - version = "5.10.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/b6/73/c8f68b3a7d0deece3d2f7ab727fbf262bfca7475330b44043a5503b3aa7a/ipython-5.10.0.tar.gz"; - sha256 = "1vjgfayfsjkwsccizpmr8gfg6p1sr9513bxnyzg0v45h5g8f5yfi"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."backports.shutil-get-terminal-size" - self."decorator" - self."pathlib2" - self."pexpect" - self."pickleshare" - self."prompt-toolkit" - self."pygments" - self."setuptools" - self."simplegeneric" - self."traitlets" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "ipython-genutils" = super.buildPythonPackage rec { - pname = "ipython-genutils"; - version = "0.2.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/e8/69/fbeffffc05236398ebfcfb512b6d2511c622871dca1746361006da310399/ipython_genutils-0.2.0.tar.gz"; - sha256 = "1a4bc9y8hnvq6cp08qs4mckgm6i6ajpndp4g496rvvzcfmp12bpb"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "iso8601" = super.buildPythonPackage rec { - pname = "iso8601"; - version = "0.1.12"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/45/13/3db24895497345fb44c4248c08b16da34a9eb02643cea2754b21b5ed08b0/iso8601-0.1.12.tar.gz"; - sha256 = "10nyvvnrhw2w3p09v1ica4lgj6f4g9j3kkfx17qmraiq3w7b5i29"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "isodate" = super.buildPythonPackage rec { - pname = "isodate"; - version = "0.6.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/b1/80/fb8c13a4cd38eb5021dc3741a9e588e4d1de88d895c1910c6fc8a08b7a70/isodate-0.6.0.tar.gz"; - sha256 = "1n7jkz68kk5pwni540pr5zdh99bf6ywydk1p5pdrqisrawylldif"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."six" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "itsdangerous" = super.buildPythonPackage rec { - pname = "itsdangerous"; - version = "0.24"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/dc/b4/a60bcdba945c00f6d608d8975131ab3f25b22f2bcfe1dab221165194b2d4/itsdangerous-0.24.tar.gz"; - sha256 = "06856q6x675ly542ig0plbqcyab6ksfzijlyf1hzhgg3sgwgrcyb"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "jinja2" = super.buildPythonPackage rec { - pname = "jinja2"; - version = "2.9.6"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/90/61/f820ff0076a2599dd39406dcb858ecb239438c02ce706c8e91131ab9c7f1/Jinja2-2.9.6.tar.gz"; - sha256 = "1zzrkywhziqffrzks14kzixz7nd4yh2vc0fb04a68vfd2ai03anx"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."markupsafe" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "jsonschema" = super.buildPythonPackage rec { - pname = "jsonschema"; - version = "2.6.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/58/b9/171dbb07e18c6346090a37f03c7e74410a1a56123f847efed59af260a298/jsonschema-2.6.0.tar.gz"; - sha256 = "00kf3zmpp9ya4sydffpifn0j0mzm342a2vzh82p6r0vh10cg7xbg"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = [ - self."vcversioner" - ]; - propagatedBuildInputs = [ - self."functools32" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "jupyter-client" = super.buildPythonPackage rec { - pname = "jupyter-client"; - version = "5.0.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/e5/6f/65412ed462202b90134b7e761b0b7e7f949e07a549c1755475333727b3d0/jupyter_client-5.0.0.tar.gz"; - sha256 = "0nxw4rqk4wsjhc87gjqd7pv89cb9dnimcfnmcmp85bmrvv1gjri7"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."jupyter-core" - self."python-dateutil" - self."pyzmq" - self."traitlets" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "jupyter-core" = super.buildPythonPackage rec { - pname = "jupyter-core"; - version = "4.5.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/4a/de/ff4ca734656d17ebe0450807b59d728f45277e2e7f4b82bc9aae6cb82961/jupyter_core-4.5.0.tar.gz"; - sha256 = "1xr4pbghwk5hayn5wwnhb7z95380r45p79gf5if5pi1akwg7qvic"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."traitlets" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "kombu" = super.buildPythonPackage rec { - pname = "kombu"; - version = "4.6.6"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/20/e6/bc2d9affba6138a1dc143f77fef253e9e08e238fa7c0688d917c09005e96/kombu-4.6.6.tar.gz"; - sha256 = "11mxpcy8mg1l35bgbhba70v29bydr2hrhdbdlb4lg98m3m5vaq0p"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."amqp" - self."importlib-metadata" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "lxml" = super.buildPythonPackage rec { - pname = "lxml"; - version = "4.5.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/39/2b/0a66d5436f237aff76b91e68b4d8c041d145ad0a2cdeefe2c42f76ba2857/lxml-4.5.0.tar.gz"; - sha256 = "0q5v7c9k09md6czyl2z0i1xq7hkn4p691gw3850ks0hdyn0cw846"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "mako" = super.buildPythonPackage rec { - pname = "mako"; - version = "1.1.2"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/42/64/fc7c506d14d8b6ed363e7798ffec2dfe4ba21e14dda4cfab99f4430cba3a/Mako-1.1.2.tar.gz"; - sha256 = "17bd6r9ynp4hyfckkia0bb8gpd98f42jfl5rmzdpbld59bbcaf9i"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."markupsafe" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "markdown" = super.buildPythonPackage rec { - pname = "markdown"; - version = "2.6.11"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/b3/73/fc5c850f44af5889192dff783b7b0d8f3fe8d30b65c8e3f78f8f0265fecf/Markdown-2.6.11.tar.gz"; - sha256 = "108g80ryzykh8bj0i7jfp71510wrcixdi771lf2asyghgyf8cmm8"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "markupsafe" = super.buildPythonPackage rec { - pname = "markupsafe"; - version = "1.1.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/b9/2e/64db92e53b86efccfaea71321f597fa2e1b2bd3853d8ce658568f7a13094/MarkupSafe-1.1.1.tar.gz"; - sha256 = "0sqipg4fk7xbixqd8kq6rlkxj664d157bdwbh93farcphf92x1r9"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal pkgs.lib.licenses.bsd3 ]; - }; - }; - "mistune" = super.buildPythonPackage rec { - pname = "mistune"; - version = "0.8.4"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/2d/a4/509f6e7783ddd35482feda27bc7f72e65b5e7dc910eca4ab2164daf9c577/mistune-0.8.4.tar.gz"; - sha256 = "0vkmsh0x480rni51lhyvigfdf06b9247z868pk3bal1wnnfl58sr"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "mock" = super.buildPythonPackage rec { - pname = "mock"; - version = "3.0.5"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/2e/ab/4fe657d78b270aa6a32f027849513b829b41b0f28d9d8d7f8c3d29ea559a/mock-3.0.5.tar.gz"; - sha256 = "1hrp6j0yrx2xzylfv02qa8kph661m6yq4p0mc8fnimch9j4psrc3"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."funcsigs" - self."six" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal { fullName = "OSI Approved :: BSD License"; } ]; - }; - }; - "more-itertools" = super.buildPythonPackage rec { - pname = "more-itertools"; - version = "5.0.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/dd/26/30fc0d541d9fdf55faf5ba4b0fd68f81d5bd2447579224820ad525934178/more-itertools-5.0.0.tar.gz"; - sha256 = "1r12cm6mcdwdzz7d47a6g4l437xsvapdlgyhqay3i2nrlv03da9q"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."six" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "msgpack-python" = super.buildPythonPackage rec { - pname = "msgpack-python"; - version = "0.5.6"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/8a/20/6eca772d1a5830336f84aca1d8198e5a3f4715cd1c7fc36d3cc7f7185091/msgpack-python-0.5.6.tar.gz"; - sha256 = "16wh8qgybmfh4pjp8vfv78mdlkxfmcasg78lzlnm6nslsfkci31p"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.asl20 ]; - }; - }; - "mysqlclient" = super.buildPythonPackage rec { - pname = "mysqlclient"; - version = "1.4.6"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/d0/97/7326248ac8d5049968bf4ec708a5d3d4806e412a42e74160d7f266a3e03a/mysqlclient-1.4.6.tar.gz"; - sha256 = "05ifrfz7rrl7j4gq4xz5acd76lrnmry9vrvg98hknakm72damzgk"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.gpl1 ]; - }; - }; - "nbconvert" = super.buildPythonPackage rec { - pname = "nbconvert"; - version = "5.3.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/b9/a4/d0a0938ad6f5eeb4dea4e73d255c617ef94b0b2849d51194c9bbdb838412/nbconvert-5.3.1.tar.gz"; - sha256 = "1f9dkvpx186xjm4xab0qbph588mncp4vqk3fmxrsnqs43mks9c8j"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."bleach" - self."entrypoints" - self."jinja2" - self."jupyter-core" - self."mistune" - self."nbformat" - self."pandocfilters" - self."pygments" - self."testpath" - self."traitlets" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "nbformat" = super.buildPythonPackage rec { - pname = "nbformat"; - version = "4.4.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/6e/0e/160754f7ae3e984863f585a3743b0ed1702043a81245907c8fae2d537155/nbformat-4.4.0.tar.gz"; - sha256 = "00nlf08h8yc4q73nphfvfhxrcnilaqanb8z0mdy6nxk0vzq4wjgp"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."ipython-genutils" - self."jsonschema" - self."jupyter-core" - self."traitlets" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "packaging" = super.buildPythonPackage rec { - pname = "packaging"; - version = "20.3"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/65/37/83e3f492eb52d771e2820e88105f605335553fe10422cba9d256faeb1702/packaging-20.3.tar.gz"; - sha256 = "18xpablq278janh03bai9xd4kz9b0yfp6vflazn725ns9x3jna9w"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."pyparsing" - self."six" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal { fullName = "BSD or Apache License, Version 2.0"; } pkgs.lib.licenses.asl20 ]; - }; - }; - "pandocfilters" = super.buildPythonPackage rec { - pname = "pandocfilters"; - version = "1.4.2"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/4c/ea/236e2584af67bb6df960832731a6e5325fd4441de001767da328c33368ce/pandocfilters-1.4.2.tar.gz"; - sha256 = "1a8d9b7s48gmq9zj0pmbyv2sivn5i7m6mybgpkk4jm5vd7hp1pdk"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "paste" = super.buildPythonPackage rec { - pname = "paste"; - version = "3.4.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/79/4a/45821b71dd40000507549afd1491546afad8279c0a87527c88776a794158/Paste-3.4.0.tar.gz"; - sha256 = "16sichvhyci1gaarkjs35mai8vphh7b244qm14hj1isw38nx4c03"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."six" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "pastedeploy" = super.buildPythonPackage rec { - pname = "pastedeploy"; - version = "2.1.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/c4/e9/972a1c20318b3ae9edcab11a6cef64308fbae5d0d45ab52c6f8b2b8f35b8/PasteDeploy-2.1.0.tar.gz"; - sha256 = "16qsq5y6mryslmbp5pn35x4z8z3ndp5rpgl42h226879nrw9hmg7"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "pastescript" = super.buildPythonPackage rec { - pname = "pastescript"; - version = "3.2.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/ff/47/45c6f5a3cb8f5abf786fea98dbb8d02400a55768a9b623afb7df12346c61/PasteScript-3.2.0.tar.gz"; - sha256 = "1b3jq7xh383nvrrlblk05m37345bv97xrhx77wshllba3h7mq3wv"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = [ - self."paste" - self."pastedeploy" - ]; - propagatedBuildInputs = [ - self."paste" - self."pastedeploy" - self."six" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "pathlib2" = super.buildPythonPackage rec { - pname = "pathlib2"; - version = "2.3.5"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/94/d8/65c86584e7e97ef824a1845c72bbe95d79f5b306364fa778a3c3e401b309/pathlib2-2.3.5.tar.gz"; - sha256 = "0s4qa8c082fdkb17izh4mfgwrjd1n5pya18wvrbwqdvvb5xs9nbc"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."scandir" - self."six" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "peppercorn" = super.buildPythonPackage rec { - pname = "peppercorn"; - version = "0.6"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/e4/77/93085de7108cdf1a0b092ff443872a8f9442c736d7ddebdf2f27627935f4/peppercorn-0.6.tar.gz"; - sha256 = "1ip4bfwcpwkq9hz2dai14k2cyabvwrnvcvrcmzxmqm04g8fnimwn"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ]; - }; - }; - "pexpect" = super.buildPythonPackage rec { - pname = "pexpect"; - version = "4.8.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/e5/9b/ff402e0e930e70467a7178abb7c128709a30dfb22d8777c043e501bc1b10/pexpect-4.8.0.tar.gz"; - sha256 = "032cg337h8awydgypz6f4wx848lw8dyrj4zy988x0lyib4ws8rgw"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."ptyprocess" - ]; - meta = { - license = [ pkgs.lib.licenses.isc { fullName = "ISC License (ISCL)"; } ]; - }; - }; - "pickleshare" = super.buildPythonPackage rec { - pname = "pickleshare"; - version = "0.7.5"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/d8/b6/df3c1c9b616e9c0edbc4fbab6ddd09df9535849c64ba51fcb6531c32d4d8/pickleshare-0.7.5.tar.gz"; - sha256 = "1jmghg3c53yp1i8cm6pcrm280ayi8621rwyav9fac7awjr3kss47"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."pathlib2" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "plaster" = super.buildPythonPackage rec { - pname = "plaster"; - version = "1.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/37/e1/56d04382d718d32751017d32f351214384e529b794084eee20bb52405563/plaster-1.0.tar.gz"; - sha256 = "1hy8k0nv2mxq94y5aysk6hjk9ryb4bsd13g83m60hcyzxz3wflc3"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."setuptools" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "plaster-pastedeploy" = super.buildPythonPackage rec { - pname = "plaster-pastedeploy"; - version = "0.7"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/99/69/2d3bc33091249266a1bd3cf24499e40ab31d54dffb4a7d76fe647950b98c/plaster_pastedeploy-0.7.tar.gz"; - sha256 = "1zg7gcsvc1kzay1ry5p699rg2qavfsxqwl17mqxzr0gzw6j9679r"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = [ - self."setuptools" - self."wheel" - ]; - propagatedBuildInputs = [ - self."pastedeploy" - self."plaster" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "pluggy" = super.buildPythonPackage rec { - pname = "pluggy"; - version = "0.13.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/f8/04/7a8542bed4b16a65c2714bf76cf5a0b026157da7f75e87cc88774aa10b14/pluggy-0.13.1.tar.gz"; - sha256 = "1c35qyhvy27q9ih9n899f3h4sdnpgq027dbiilly2qb5cvgarchm"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = [ - self."setuptools" - self."setuptools-scm" - self."wheel" - ]; - propagatedBuildInputs = [ - self."importlib-metadata" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "premailer" = super.buildPythonPackage rec { - pname = "premailer"; - version = "3.6.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/62/da/2f43cdf9d3d79c80c4856a12389a1f257d65fe9ccc44bc6b4383c8a18e33/premailer-3.6.1.tar.gz"; - sha256 = "08pshx7a110k4ll20x0xhpvyn3kkipkrbgxjjn7ncdxs54ihdhgw"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."cachetools" - self."cssselect" - self."cssutils" - self."lxml" - self."requests" - ]; - meta = { - license = [ pkgs.lib.licenses.psfl { fullName = "Python"; } ]; - }; - }; - "prompt-toolkit" = super.buildPythonPackage rec { - pname = "prompt-toolkit"; - version = "1.0.18"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/c5/64/c170e5b1913b540bf0c8ab7676b21fdd1d25b65ddeb10025c6ca43cccd4c/prompt_toolkit-1.0.18.tar.gz"; - sha256 = "09h1153wgr5x2ny7ds0w2m81n3bb9j8hjb8sjfnrg506r01clkyx"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."six" - self."wcwidth" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "psutil" = super.buildPythonPackage rec { - pname = "psutil"; - version = "5.7.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/c4/b8/3512f0e93e0db23a71d82485ba256071ebef99b227351f0f5540f744af41/psutil-5.7.0.tar.gz"; - sha256 = "03jykdi3dgf1cdal9bv4fq9zjvzj9l9bs99gi5ar81sdl5nc2pk8"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "psycopg2" = super.buildPythonPackage rec { - pname = "psycopg2"; - version = "2.8.4"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/84/d7/6a93c99b5ba4d4d22daa3928b983cec66df4536ca50b22ce5dcac65e4e71/psycopg2-2.8.4.tar.gz"; - sha256 = "1djvh98pi4hjd8rxbq8qzc63bg8v78k33yg6pl99wak61b6fb67q"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.zpl21 { fullName = "GNU Library or Lesser General Public License (LGPL)"; } { fullName = "LGPL with exceptions or ZPL"; } ]; - }; - }; - "ptyprocess" = super.buildPythonPackage rec { - pname = "ptyprocess"; - version = "0.6.0"; - src = fetchurl { - url = "https://code.rhodecode.com/upstream/ptyprocess/artifacts/download/0-c8b019b1-c4d3-46ac-a0ad-1206ec3fb3cb.tar.gz?sha256=50394f2c5e117fcab4360bf99c8bc40be7211ee1a5860aeb3809b44249550c3e"; - sha256 = "0ghcam4l5d0973mhm1m5w4g23rqbqj5rry8b6ssclzqibqn4yfah"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ { fullName = "ISC License (ISCL)"; } ]; - }; - }; - "py" = super.buildPythonPackage rec { - pname = "py"; - version = "1.8.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/bd/8f/169d08dcac7d6e311333c96b63cbe92e7947778475e1a619b674989ba1ed/py-1.8.1.tar.gz"; - sha256 = "1ajjazg3913n0sp3vjyva9c2qh5anx8ziryng935f89604a0h9sy"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "py-bcrypt" = super.buildPythonPackage rec { - pname = "py-bcrypt"; - version = "0.4"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/68/b1/1c3068c5c4d2e35c48b38dcc865301ebfdf45f54507086ac65ced1fd3b3d/py-bcrypt-0.4.tar.gz"; - sha256 = "0y6smdggwi5s72v6p1nn53dg6w05hna3d264cq6kas0lap73p8az"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "py-gfm" = super.buildPythonPackage rec { - pname = "py-gfm"; - version = "0.1.4"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/06/ee/004a03a1d92bb386dae44f6dd087db541bc5093374f1637d4d4ae5596cc2/py-gfm-0.1.4.tar.gz"; - sha256 = "0zip06g2isivx8fzgqd4n9qzsa22c25jas1rsb7m2rnjg72m0rzg"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."markdown" - self."setuptools" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "pyasn1" = super.buildPythonPackage rec { - pname = "pyasn1"; - version = "0.4.8"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/a4/db/fffec68299e6d7bad3d504147f9094830b704527a7fc098b721d38cc7fa7/pyasn1-0.4.8.tar.gz"; - sha256 = "1fnhbi3rmk47l9851gbik0flfr64vs5j0hbqx24cafjap6gprxxf"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "pyasn1-modules" = super.buildPythonPackage rec { - pname = "pyasn1-modules"; - version = "0.2.6"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/f1/a9/a1ef72a0e43feff643cf0130a08123dea76205e7a0dda37e3efb5f054a31/pyasn1-modules-0.2.6.tar.gz"; - sha256 = "08hph9j1r018drnrny29l7dl2q0cin78csswrhwrh8jmq61pmha3"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."pyasn1" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal pkgs.lib.licenses.bsd2 ]; - }; - }; - "pycparser" = super.buildPythonPackage rec { - pname = "pycparser"; - version = "2.20"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/0f/86/e19659527668d70be91d0369aeaa055b4eb396b0f387a4f92293a20035bd/pycparser-2.20.tar.gz"; - sha256 = "1w0m3xvlrzq4lkbvd1ngfm8mdw64r1yxy6n7djlw6qj5d0km6ird"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "pycrypto" = super.buildPythonPackage rec { - pname = "pycrypto"; - version = "2.6.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/60/db/645aa9af249f059cc3a368b118de33889219e0362141e75d4eaf6f80f163/pycrypto-2.6.1.tar.gz"; - sha256 = "0g0ayql5b9mkjam8hym6zyg6bv77lbh66rv1fyvgqb17kfc1xkpj"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.publicDomain ]; - }; - }; - "pycurl" = super.buildPythonPackage rec { - pname = "pycurl"; - version = "7.43.0.3"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/ac/b3/0f3979633b7890bab6098d84c84467030b807a1e2b31f5d30103af5a71ca/pycurl-7.43.0.3.tar.gz"; - sha256 = "13nsvqhvnmnvfk75s8iynqsgszyv06cjp4drd3psi7zpbh63623g"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit { fullName = "LGPL/MIT"; } { fullName = "GNU Library or Lesser General Public License (LGPL)"; } ]; - }; - }; - "pygments" = super.buildPythonPackage rec { - pname = "pygments"; - version = "2.4.2"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/7e/ae/26808275fc76bf2832deb10d3a3ed3107bc4de01b85dcccbe525f2cd6d1e/Pygments-2.4.2.tar.gz"; - sha256 = "15v2sqm5g12bqa0c7wikfh9ck2nl97ayizy1hpqhmws5gqalq748"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "pymysql" = super.buildPythonPackage rec { - pname = "pymysql"; - version = "0.8.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/44/39/6bcb83cae0095a31b6be4511707fdf2009d3e29903a55a0494d3a9a2fac0/PyMySQL-0.8.1.tar.gz"; - sha256 = "0a96crz55bw4h6myh833skrli7b0ck89m3x673y2z2ryy7zrpq9l"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "pyotp" = super.buildPythonPackage rec { - pname = "pyotp"; - version = "2.3.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/f7/15/395c4945ea6bc37e8811280bb675615cb4c2b2c1cd70bdc43329da91a386/pyotp-2.3.0.tar.gz"; - sha256 = "18d13ikra1iq0xyfqfm72zhgwxi2qi9ps6z1a6zmqp4qrn57wlzw"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "pyparsing" = super.buildPythonPackage rec { - pname = "pyparsing"; - version = "2.4.7"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/c1/47/dfc9c342c9842bbe0036c7f763d2d6686bcf5eb1808ba3e170afdb282210/pyparsing-2.4.7.tar.gz"; - sha256 = "1hgc8qrbq1ymxbwfbjghv01fm3fbpjwpjwi0bcailxxzhf3yq0y2"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "pyramid" = super.buildPythonPackage rec { - pname = "pyramid"; - version = "1.10.4"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/c2/43/1ae701c9c6bb3a434358e678a5e72c96e8aa55cf4cb1d2fa2041b5dd38b7/pyramid-1.10.4.tar.gz"; - sha256 = "0rkxs1ajycg2zh1c94xlmls56mx5m161sn8112skj0amza6cn36q"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = [ - self."setuptools" - self."wheel" - ]; - propagatedBuildInputs = [ - self."hupper" - self."plaster" - self."plaster-pastedeploy" - self."repoze.lru" - self."setuptools" - self."translationstring" - self."venusian" - self."webob" - self."zope.deprecation" - self."zope.interface" - ]; - meta = { - license = [ { fullName = "Repoze Public License"; } { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ]; - }; - }; - "pyramid-debugtoolbar" = super.buildPythonPackage rec { - pname = "pyramid-debugtoolbar"; - version = "4.6.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/99/f6/b8603f82c18275be293921bc3a2184205056ca505747bf64ab8a0c08e124/pyramid_debugtoolbar-4.6.1.tar.gz"; - sha256 = "185z7q8n959ga5331iczwra2iljwkidfx4qn6bbd7vm3rm4w6llv"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."ipaddress" - self."pygments" - self."pyramid" - self."pyramid-mako" - self."repoze.lru" - ]; - meta = { - license = [ { fullName = "Repoze Public License"; } pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "pyramid-jinja2" = super.buildPythonPackage rec { - pname = "pyramid-jinja2"; - version = "2.7"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/d8/80/d60a7233823de22ce77bd864a8a83736a1fe8b49884b08303a2e68b2c853/pyramid_jinja2-2.7.tar.gz"; - sha256 = "1sz5s0pp5jqhf4w22w9527yz8hgdi4mhr6apd6vw1gm5clghh8aw"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."jinja2" - self."markupsafe" - self."pyramid" - self."zope.deprecation" - ]; - meta = { - license = [ { fullName = "Repoze Public License"; } { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ]; - }; - }; - "pyramid-mailer" = super.buildPythonPackage rec { - pname = "pyramid-mailer"; - version = "0.15.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/a0/f2/6febf5459dff4d7e653314d575469ad2e11b9d2af2c3606360e1c67202f2/pyramid_mailer-0.15.1.tar.gz"; - sha256 = "16vg8jb203jgb7b0hd6wllfqvp542qh2ry1gjai2m6qpv5agy2pc"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."pyramid" - self."repoze.sendmail" - self."transaction" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "pyramid-mako" = super.buildPythonPackage rec { - pname = "pyramid-mako"; - version = "1.1.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/63/7b/5e2af68f675071a6bad148c1c393928f0ef5fcd94e95cbf53b89d6471a83/pyramid_mako-1.1.0.tar.gz"; - sha256 = "1qj0m091mnii86j2q1d82yir22nha361rvhclvg3s70z8iiwhrh0"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."mako" - self."pyramid" - ]; - meta = { - license = [ { fullName = "Repoze Public License"; } { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ]; - }; - }; - "pysqlite" = super.buildPythonPackage rec { - pname = "pysqlite"; - version = "2.8.3"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/42/02/981b6703e3c83c5b25a829c6e77aad059f9481b0bbacb47e6e8ca12bd731/pysqlite-2.8.3.tar.gz"; - sha256 = "1424gwq9sil2ffmnizk60q36vydkv8rxs6m7xs987kz8cdc37lqp"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ { fullName = "zlib/libpng License"; } { fullName = "zlib/libpng license"; } ]; - }; - }; - "pytest" = super.buildPythonPackage rec { - pname = "pytest"; - version = "4.6.9"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/ec/2e/1602fca477ab3ccb1952f07db0536b60b6afafec16eced8063b553001509/pytest-4.6.9.tar.gz"; - sha256 = "0fgkmpc31nzy97fxfrkqbzycigdwxwwmninx3qhkzp81migggs0r"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = [ - self."setuptools" - self."setuptools-scm" - self."wheel" - ]; - propagatedBuildInputs = [ - self."atomicwrites" - self."attrs" - self."funcsigs" - self."importlib-metadata" - self."more-itertools" - self."packaging" - self."pathlib2" - self."pluggy" - self."py" - self."six" - self."wcwidth" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "pytest-cov" = super.buildPythonPackage rec { - pname = "pytest-cov"; - version = "2.8.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/13/8a/51f54b43a043c799bceca846594b9a310823a3e52df5ec27109cccba90f4/pytest-cov-2.8.1.tar.gz"; - sha256 = "0avzlk9p4nc44k7lpx9109dybq71xqnggxb9f4hp0l64pbc44ryc"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."coverage" - self."pytest" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal pkgs.lib.licenses.mit ]; - }; - }; - "pytest-profiling" = super.buildPythonPackage rec { - pname = "pytest-profiling"; - version = "1.7.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/39/70/22a4b33739f07f1732a63e33bbfbf68e0fa58cfba9d200e76d01921eddbf/pytest-profiling-1.7.0.tar.gz"; - sha256 = "0abz9gi26jpcfdzgsvwad91555lpgdc8kbymicmms8k2fqa8z4wk"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = [ - self."setuptools-git" - ]; - propagatedBuildInputs = [ - self."gprof2dot" - self."pytest" - self."six" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "pytest-runner" = super.buildPythonPackage rec { - pname = "pytest-runner"; - version = "5.2"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/5b/82/1462f86e6c3600f2471d5f552fcc31e39f17717023df4bab712b4a9db1b3/pytest-runner-5.2.tar.gz"; - sha256 = "0awll1bva5zy8cspsxcpv7pjcrdf5c6pf56nqn4f74vvmlzfgiwn"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = [ - self."setuptools" - self."wheel" - self."setuptools-scm" - ]; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "pytest-sugar" = super.buildPythonPackage rec { - pname = "pytest-sugar"; - version = "0.9.3"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/ba/35/edf24df4b2fe7d9005bdb9d166c18ae9cefd8b664e7fb2c8dfb7bc9db184/pytest-sugar-0.9.3.tar.gz"; - sha256 = "1i0hv3h49zvl62jbiyjag84carbrp3zprqzxffdr291nxavvac0n"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."packaging" - self."pytest" - self."termcolor" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "pytest-timeout" = super.buildPythonPackage rec { - pname = "pytest-timeout"; - version = "1.3.3"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/13/48/7a166eaa29c1dca6cc253e3ba5773ff2e4aa4f567c1ea3905808e95ac5c1/pytest-timeout-1.3.3.tar.gz"; - sha256 = "1cczcjhw4xx5sjkhxlhc5c1bkr7x6fcyx12wrnvwfckshdvblc2a"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."pytest" - ]; - meta = { - license = [ pkgs.lib.licenses.mit { fullName = "DFSG approved"; } ]; - }; - }; - "python-dateutil" = super.buildPythonPackage rec { - pname = "python-dateutil"; - version = "2.8.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/be/ed/5bbc91f03fa4c839c4c7360375da77f9659af5f7086b7a7bdda65771c8e0/python-dateutil-2.8.1.tar.gz"; - sha256 = "0g42w7k5007iv9dam6gnja2ry8ydwirh99mgdll35s12pyfzxsvk"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = [ - self."setuptools" - self."wheel" - self."setuptools-scm" - ]; - propagatedBuildInputs = [ - self."six" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal pkgs.lib.licenses.asl20 { fullName = "Dual License"; } ]; - }; - }; - "python-editor" = super.buildPythonPackage rec { - pname = "python-editor"; - version = "1.0.4"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/0a/85/78f4a216d28343a67b7397c99825cff336330893f00601443f7c7b2f2234/python-editor-1.0.4.tar.gz"; - sha256 = "0yrjh8w72ivqxi4i7xsg5b1vz15x8fg51xra7c3bgfyxqnyadzai"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.asl20 { fullName = "Apache"; } ]; - }; - }; - "python-ldap" = super.buildPythonPackage rec { - pname = "python-ldap"; - version = "3.2.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/ea/93/596f875e003c770447f4b99267820a0c769dd2dc3ae3ed19afe460fcbad0/python-ldap-3.2.0.tar.gz"; - sha256 = "13nvrhp85yr0jyxixcjj012iw8l9wynxxlykm9j3alss6waln73x"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."pyasn1" - self."pyasn1-modules" - ]; - meta = { - license = [ pkgs.lib.licenses.psfl ]; - }; - }; - "python-memcached" = super.buildPythonPackage rec { - pname = "python-memcached"; - version = "1.59"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/90/59/5faf6e3cd8a568dd4f737ddae4f2e54204fd8c51f90bf8df99aca6c22318/python-memcached-1.59.tar.gz"; - sha256 = "0kvyapavbirk2x3n1jx4yb9nyigrj1s3x15nm3qhpvhkpqvqdqm2"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."six" - ]; - meta = { - license = [ pkgs.lib.licenses.psfl ]; - }; - }; - "python-pam" = super.buildPythonPackage rec { - pname = "python-pam"; - version = "1.8.4"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/01/16/544d01cae9f28e0292dbd092b6b8b0bf222b528f362ee768a5bed2140111/python-pam-1.8.4.tar.gz"; - sha256 = "16whhc0vr7gxsbzvsnq65nq8fs3wwmx755cavm8kkczdkz4djmn8"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ { fullName = "License :: OSI Approved :: MIT License"; } pkgs.lib.licenses.mit ]; - }; - }; - "python-saml" = super.buildPythonPackage rec { - pname = "python-saml"; - version = "2.4.2"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/79/a8/a6611017e0883102fd5e2b73c9d90691b8134e38247c04ee1531d3dc647c/python-saml-2.4.2.tar.gz"; - sha256 = "0dls4hwvf13yg7x5yfjrghbywg8g38vn5vr0rsf70hli3ydbfm43"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."defusedxml" - self."dm.xmlsec.binding" - self."isodate" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "pytz" = super.buildPythonPackage rec { - pname = "pytz"; - version = "2019.3"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/82/c3/534ddba230bd4fbbd3b7a3d35f3341d014cca213f369a9940925e7e5f691/pytz-2019.3.tar.gz"; - sha256 = "1ghrk1wg45d3nymj7bf4zj03n3bh64xmczhk4pfi577hdkdhcb5h"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "pyzmq" = super.buildPythonPackage rec { - pname = "pyzmq"; - version = "14.6.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/8a/3b/5463d5a9d712cd8bbdac335daece0d69f6a6792da4e3dd89956c0db4e4e6/pyzmq-14.6.0.tar.gz"; - sha256 = "1frmbjykvhmdg64g7sn20c9fpamrsfxwci1nhhg8q7jgz5pq0ikp"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal { fullName = "LGPL+BSD"; } { fullName = "GNU Library or Lesser General Public License (LGPL)"; } ]; - }; - }; - "redis" = super.buildPythonPackage rec { - pname = "redis"; - version = "3.4.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/ef/2e/2c0f59891db7db087a7eeaa79bc7c7f2c039e71a2b5b0a41391e9d462926/redis-3.4.1.tar.gz"; - sha256 = "07yaj0j9fs7xdkg5bg926fa990khyigjbp31si8ai20vj8sv7kqd"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "repoze.lru" = super.buildPythonPackage rec { - pname = "repoze.lru"; - version = "0.7"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/12/bc/595a77c4b5e204847fdf19268314ef59c85193a9dc9f83630fc459c0fee5/repoze.lru-0.7.tar.gz"; - sha256 = "0xzz1aw2smy8hdszrq8yhnklx6w1r1mf55061kalw3iq35gafa84"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ { fullName = "Repoze Public License"; } { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ]; - }; - }; - "repoze.sendmail" = super.buildPythonPackage rec { - pname = "repoze.sendmail"; - version = "4.4.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/12/4e/8ef1fd5c42765d712427b9c391419a77bd48877886d2cbc5e9f23c8cad9b/repoze.sendmail-4.4.1.tar.gz"; - sha256 = "096ln02jr2afk7ab9j2czxqv2ryqq7m86ah572nqplx52iws73ks"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."setuptools" - self."transaction" - self."zope.interface" - ]; - meta = { - license = [ pkgs.lib.licenses.zpl21 ]; - }; - }; - "requests" = super.buildPythonPackage rec { - pname = "requests"; - version = "2.22.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/01/62/ddcf76d1d19885e8579acb1b1df26a852b03472c0e46d2b959a714c90608/requests-2.22.0.tar.gz"; - sha256 = "1d5ybh11jr5sm7xp6mz8fyc7vrp4syifds91m7sj60xalal0gq0i"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."certifi" - self."chardet" - self."idna" - self."urllib3" - ]; - meta = { - license = [ pkgs.lib.licenses.asl20 ]; - }; - }; - "responses" = super.buildPythonPackage rec { - pname = "responses"; - version = "0.10.14"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/9c/45/32f8d8c0c8f1f3843419a36aee0815bad040ac0029cfe96bb894894f042d/responses-0.10.14.tar.gz"; - sha256 = "0q29d8b9mar5szmia9lphzc387nwws76pdqc5hm059901c0vqy0s"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."cookies" - self."mock" - self."requests" - self."six" - ]; - meta = { - license = [ pkgs.lib.licenses.asl20 ]; - }; - }; - "rhodecode-enterprise-ce" = super.buildPythonPackage rec { - pname = "rhodecode-enterprise-ce"; - version = "4.19.0"; - src = ./.; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = [ - self."pastescript" - self."paste" - self."pastedeploy" - self."pytest-runner" - ]; - propagatedBuildInputs = [ - self."alembic" - self."amqp" - self."appenlight-client" - self."babel" - self."beaker" - self."beautifulsoup4" - self."bleach" - self."bumpversion" - self."celery" - self."channelstream" - self."click" - self."colander" - self."configobj" - self."cov-core" - self."coverage" - self."cryptography" - self."cssselect" - self."cython" - self."decorator" - self."deform" - self."docutils" - self."dogpile.cache" - self."dogpile.core" - self."formencode" - self."future" - self."futures" - self."gevent" - self."gprof2dot" - self."greenlet" - self."gunicorn" - self."infrae.cache" - self."invoke" - self."ipdb" - self."ipython" - self."iso8601" - self."itsdangerous" - self."jupyter-client" - self."jupyter-core" - self."kombu" - self."lxml" - self."mako" - self."markdown" - self."markupsafe" - self."mock" - self."msgpack-python" - self."mysqlclient" - self."nbconvert" - self."nbformat" - self."packaging" - self."paste" - self."pastedeploy" - self."pastescript" - self."pathlib2" - self."peppercorn" - self."premailer" - self."psutil" - self."psycopg2" - self."py" - self."py-bcrypt" - self."py-gfm" - self."pycrypto" - self."pycurl" - self."pygments" - self."pymysql" - self."pyotp" - self."pyparsing" - self."pyramid" - self."pyramid-debugtoolbar" - self."pyramid-mailer" - self."pyramid-mako" - self."pysqlite" - self."pytest" - self."pytest-cov" - self."pytest-profiling" - self."pytest-runner" - self."pytest-sugar" - self."pytest-timeout" - self."python-dateutil" - self."python-ldap" - self."python-memcached" - self."python-pam" - self."python-saml" - self."pytz" - self."pyzmq" - self."redis" - self."repoze.lru" - self."requests" - self."rhodecode-tools" - self."routes" - self."simplejson" - self."six" - self."sqlalchemy" - self."sshpubkeys" - self."subprocess32" - self."supervisor" - self."translationstring" - self."tzlocal" - self."urllib3" - self."urlobject" - self."venusian" - self."waitress" - self."weberror" - self."webhelpers2" - self."webob" - self."webtest" - self."whoosh" - self."wsgiref" - self."zope.cachedescriptors" - self."zope.deprecation" - self."zope.event" - self."zope.interface" - ]; - meta = { - license = [ { fullName = "Affero GNU General Public License v3 or later (AGPLv3+)"; } { fullName = "AGPLv3, and Commercial License"; } ]; - }; - }; - "rhodecode-tools" = super.buildPythonPackage rec { - pname = "rhodecode-tools"; - version = "2.0.0"; - src = fetchurl { - url = "https://code.rhodecode.com/rhodecode-tools-ce/artifacts/download/0-0cf09d55-fcb5-4ab0-ad48-e71f65090875.tar.gz?sha256=ae458b6845f278aed1bcb90939ef01cdb581016ba0e7f58602d1ac6513f94707"; - sha256 = "01s7z49nbb6i0a3gbrx0dc0q3dfd07pkj2drpk8swy7j8ml8nidf"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = [ - self."pytest-runner" - ]; - propagatedBuildInputs = [ - self."click" - self."cov-core" - self."coverage" - self."elasticsearch" - self."elasticsearch-dsl" - self."elasticsearch1-dsl" - self."elasticsearch2" - self."mako" - self."markupsafe" - self."mock" - self."py" - self."pytest" - self."pytest-cov" - self."pytest-runner" - self."pytest-sugar" - self."requests" - self."responses" - self."six" - self."whoosh" - ]; - meta = { - license = [ { fullName = "Apache 2.0 and Proprietary"; } ]; - }; - }; - "routes" = super.buildPythonPackage rec { - pname = "routes"; - version = "2.4.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/33/38/ea827837e68d9c7dde4cff7ec122a93c319f0effc08ce92a17095576603f/Routes-2.4.1.tar.gz"; - sha256 = "1zamff3m0kc4vyfniyhxpkkcqv1rrgnmh37ykxv34nna1ws47vi6"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."repoze.lru" - self."six" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "scandir" = super.buildPythonPackage rec { - pname = "scandir"; - version = "1.10.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/df/f5/9c052db7bd54d0cbf1bc0bb6554362bba1012d03e5888950a4f5c5dadc4e/scandir-1.10.0.tar.gz"; - sha256 = "1bkqwmf056pkchf05ywbnf659wqlp6lljcdb0y88wr9f0vv32ijd"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal { fullName = "New BSD License"; } ]; - }; - }; - "setproctitle" = super.buildPythonPackage rec { - pname = "setproctitle"; - version = "1.1.10"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/5a/0d/dc0d2234aacba6cf1a729964383e3452c52096dc695581248b548786f2b3/setproctitle-1.1.10.tar.gz"; - sha256 = "163kplw9dcrw0lffq1bvli5yws3rngpnvrxrzdw89pbphjjvg0v2"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "setuptools-git" = super.buildPythonPackage rec { - pname = "setuptools-git"; - version = "1.2"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/05/97/dd99fa9c0d9627a7b3c103a00f1566d8193aca8d473884ed258cca82b06f/setuptools_git-1.2-py2.py3-none-any.whl"; - sha256 = "1yjc97r57mfsrvb3yx45cc1aryf6m9kbkmrhlfsv95vxrv64sxp7"; - }; - format = "wheel"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "setuptools-scm" = super.buildPythonPackage rec { - pname = "setuptools-scm"; - version = "3.5.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/4b/c1/118ec08816737cc46b4dd93b22f7a138fbfb14b53f4b4718fd9983e70a50/setuptools_scm-3.5.0-py2.py3-none-any.whl"; - sha256 = "13z30zcwzp1g9g27xv91yrhhbsx2ljw0xkvb36vkx9708cyxn8qd"; - }; - format = "wheel"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "simplegeneric" = super.buildPythonPackage rec { - pname = "simplegeneric"; - version = "0.8.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/3d/57/4d9c9e3ae9a255cd4e1106bb57e24056d3d0709fc01b2e3e345898e49d5b/simplegeneric-0.8.1.zip"; - sha256 = "0wwi1c6md4vkbcsfsf8dklf3vr4mcdj4mpxkanwgb6jb1432x5yw"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = [ - pkgs."unzip" - ]; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.zpl21 ]; - }; - }; - "simplejson" = super.buildPythonPackage rec { - pname = "simplejson"; - version = "3.16.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/e3/24/c35fb1c1c315fc0fffe61ea00d3f88e85469004713dab488dee4f35b0aff/simplejson-3.16.0.tar.gz"; - sha256 = "19cws1syk8jzq2pw43878dv6fjkb0ifvjpx0i9aajix6kc9jkwxi"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ { fullName = "Academic Free License (AFL)"; } pkgs.lib.licenses.mit ]; - }; - }; - "six" = super.buildPythonPackage rec { - pname = "six"; - version = "1.11.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/16/d8/bc6316cf98419719bd59c91742194c111b6f2e85abac88e496adefaf7afe/six-1.11.0.tar.gz"; - sha256 = "1scqzwc51c875z23phj48gircqjgnn3af8zy2izjwmnlxrxsgs3h"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "sqlalchemy" = super.buildPythonPackage rec { - pname = "sqlalchemy"; - version = "1.3.15"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/8c/30/4134e726dd5ed13728ff814fa91fc01c447ad8700504653fe99d91fdd34b/SQLAlchemy-1.3.15.tar.gz"; - sha256 = "0iglkvymfp35zm5pxy5kzqvcv96kkas0chqdx7xpla86sspa9k64"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "sshpubkeys" = super.buildPythonPackage rec { - pname = "sshpubkeys"; - version = "3.1.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/00/23/f7508a12007c96861c3da811992f14283d79c819d71a217b3e12d5196649/sshpubkeys-3.1.0.tar.gz"; - sha256 = "105g2li04nm1hb15a2y6hm9m9k7fbrkd5l3gy12w3kgcmsf3k25k"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."cryptography" - self."ecdsa" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "subprocess32" = super.buildPythonPackage rec { - pname = "subprocess32"; - version = "3.5.4"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/32/c8/564be4d12629b912ea431f1a50eb8b3b9d00f1a0b1ceff17f266be190007/subprocess32-3.5.4.tar.gz"; - sha256 = "17f7mvwx2271s1wrl0qac3wjqqnrqag866zs3qc8v5wp0k43fagb"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.psfl ]; - }; - }; - "supervisor" = super.buildPythonPackage rec { - pname = "supervisor"; - version = "4.1.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/de/87/ee1ad8fa533a4b5f2c7623f4a2b585d3c1947af7bed8e65bc7772274320e/supervisor-4.1.0.tar.gz"; - sha256 = "10q36sa1jqljyyyl7cif52akpygl5kmlqq9x91hmx53f8zh6zj1d"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ]; - }; - }; - "tempita" = super.buildPythonPackage rec { - pname = "tempita"; - version = "0.5.2"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/56/c8/8ed6eee83dbddf7b0fc64dd5d4454bc05e6ccaafff47991f73f2894d9ff4/Tempita-0.5.2.tar.gz"; - sha256 = "177wwq45slfyajd8csy477bmdmzipyw0dm7i85k3akb7m85wzkna"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "termcolor" = super.buildPythonPackage rec { - pname = "termcolor"; - version = "1.1.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/8a/48/a76be51647d0eb9f10e2a4511bf3ffb8cc1e6b14e9e4fab46173aa79f981/termcolor-1.1.0.tar.gz"; - sha256 = "0fv1vq14rpqwgazxg4981904lfyp84mnammw7y046491cv76jv8x"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "testpath" = super.buildPythonPackage rec { - pname = "testpath"; - version = "0.4.4"; - src = fetchurl { - url = "https://code.rhodecode.com/upstream/testpath/artifacts/download/0-618e6b32-6ca5-428a-bda0-494bb347a56d.tar.gz?sha256=fd95bafd89ee2fb2bb0d82be34c9c5bba3a290f52cafc67a12a74ef825527019"; - sha256 = "06bha8jzhkm729xcdbrcyn8a58xvqp4k9gl21nxv4bzfi7yvm5gx"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "traitlets" = super.buildPythonPackage rec { - pname = "traitlets"; - version = "4.3.3"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/75/b0/43deb021bc943f18f07cbe3dac1d681626a48997b7ffa1e7fb14ef922b21/traitlets-4.3.3.tar.gz"; - sha256 = "1xsrwgivpkxlbr4dfndfsi098s29yqgswgjc1qqn69yxklvfw8yh"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."decorator" - self."enum34" - self."ipython-genutils" - self."six" - ]; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "transaction" = super.buildPythonPackage rec { - pname = "transaction"; - version = "2.4.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/9d/7d/0e8af0d059e052b9dcf2bb5a08aad20ae3e238746bdd3f8701a60969b363/transaction-2.4.0.tar.gz"; - sha256 = "17wz1y524ca07vr03yddy8dv0gbscs06dbdywmllxv5rc725jq3j"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."zope.interface" - ]; - meta = { - license = [ pkgs.lib.licenses.zpl21 ]; - }; - }; - "translationstring" = super.buildPythonPackage rec { - pname = "translationstring"; - version = "1.3"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/5e/eb/bee578cc150b44c653b63f5ebe258b5d0d812ddac12497e5f80fcad5d0b4/translationstring-1.3.tar.gz"; - sha256 = "0bdpcnd9pv0131dl08h4zbcwmgc45lyvq3pa224xwan5b3x4rr2f"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ { fullName = "BSD-like (http://repoze.org/license.html)"; } ]; - }; - }; - "tzlocal" = super.buildPythonPackage rec { - pname = "tzlocal"; - version = "1.5.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/cb/89/e3687d3ed99bc882793f82634e9824e62499fdfdc4b1ae39e211c5b05017/tzlocal-1.5.1.tar.gz"; - sha256 = "0kiciwiqx0bv0fbc913idxibc4ygg4cb7f8rcpd9ij2shi4bigjf"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."pytz" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "urllib3" = super.buildPythonPackage rec { - pname = "urllib3"; - version = "1.25.2"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/9a/8b/ea6d2beb2da6e331e9857d0a60b79ed4f72dcbc4e2c7f2d2521b0480fda2/urllib3-1.25.2.tar.gz"; - sha256 = "1nq2k4pss1ihsjh02r41sqpjpm5rfqkjfysyq7g7n2i1p7c66c55"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "urlobject" = super.buildPythonPackage rec { - pname = "urlobject"; - version = "2.4.3"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/e2/b8/1d0a916f4b34c4618846e6da0e4eeaa8fcb4a2f39e006434fe38acb74b34/URLObject-2.4.3.tar.gz"; - sha256 = "1ahc8ficzfvr2avln71immfh4ls0zyv6cdaa5xmkdj5rd87f5cj7"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.publicDomain ]; - }; - }; - "vcversioner" = super.buildPythonPackage rec { - pname = "vcversioner"; - version = "2.16.0.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/5a/6b/6f5da157648cadbaf83f625c395cd23ff6be3421268b7bf54523b8d9aaab/vcversioner-2.16.0.0-py2-none-any.whl"; - sha256 = "0dnz3afrdy62dllp8cx02kq9gijqw10aiiq3dg4fci4944kbv08v"; - }; - format = "wheel"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.isc { fullName = "ISC License (ISCL)"; } ]; - }; - }; - "venusian" = super.buildPythonPackage rec { - pname = "venusian"; - version = "1.2.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/7e/6f/40a9d43ac77cb51cb62be5b5662d170f43f8037bdc4eab56336c4ca92bb7/venusian-1.2.0.tar.gz"; - sha256 = "0ghyx66g8ikx9nx1mnwqvdcqm11i1vlq0hnvwl50s48bp22q5v34"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ]; - }; - }; - "vine" = super.buildPythonPackage rec { - pname = "vine"; - version = "1.3.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/1c/e1/79fb8046e607dd6c2ad05c9b8ebac9d0bd31d086a08f02699e96fc5b3046/vine-1.3.0.tar.gz"; - sha256 = "11ydsbhl1vabndc2r979dv61s6j2b0giq6dgvryifvq1m7bycghk"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "waitress" = super.buildPythonPackage rec { - pname = "waitress"; - version = "1.3.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/a6/e6/708da7bba65898e5d759ade8391b1077e49d07be0b0223c39f5be04def56/waitress-1.3.1.tar.gz"; - sha256 = "1iysl8ka3l4cdrr0r19fh1cv28q41mwpvgsb81ji7k4shkb0k3i7"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.zpl21 ]; - }; - }; - "wcwidth" = super.buildPythonPackage rec { - pname = "wcwidth"; - version = "0.1.9"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/25/9d/0acbed6e4a4be4fc99148f275488580968f44ddb5e69b8ceb53fc9df55a0/wcwidth-0.1.9.tar.gz"; - sha256 = "1wf5ycjx8s066rdvr0fgz4xds9a8zhs91c4jzxvvymm1c8l8cwzf"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "webencodings" = super.buildPythonPackage rec { - pname = "webencodings"; - version = "0.5.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/0b/02/ae6ceac1baeda530866a85075641cec12989bd8d31af6d5ab4a3e8c92f47/webencodings-0.5.1.tar.gz"; - sha256 = "08qrgrc4hrximb2gqnl69g01s93rhf2842jfxdjljc1dbwj1qsmk"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "weberror" = super.buildPythonPackage rec { - pname = "weberror"; - version = "0.13.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/07/0a/09ca5eb0fab5c0d17b380026babe81c96ecebb13f2b06c3203432dd7be72/WebError-0.13.1.tar.gz"; - sha256 = "0r4qvnf2r92gfnpa1kwygh4j2x6j3axg2i4an6hyxwg2gpaqp7y1"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."paste" - self."pygments" - self."tempita" - self."webob" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "webhelpers2" = super.buildPythonPackage rec { - pname = "webhelpers2"; - version = "2.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/ff/30/56342c6ea522439e3662427c8d7b5e5b390dff4ff2dc92d8afcb8ab68b75/WebHelpers2-2.0.tar.gz"; - sha256 = "0aphva1qmxh83n01p53f5fd43m4srzbnfbz5ajvbx9aj2aipwmcs"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."markupsafe" - self."six" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "webob" = super.buildPythonPackage rec { - pname = "webob"; - version = "1.8.5"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/9d/1a/0c89c070ee2829c934cb6c7082287c822e28236a4fcf90063e6be7c35532/WebOb-1.8.5.tar.gz"; - sha256 = "11khpzaxc88q31v25ic330gsf56fwmbdc9b30br8mvp0fmwspah5"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "webtest" = super.buildPythonPackage rec { - pname = "webtest"; - version = "2.0.34"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/2c/74/a0e63feee438735d628631e2b70d82280276a930637ac535479e5fad9427/WebTest-2.0.34.tar.gz"; - sha256 = "0x1y2c8z4fmpsny4hbp6ka37si2g10r5r2jwxhvv5mx7g3blq4bi"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."beautifulsoup4" - self."six" - self."waitress" - self."webob" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "whoosh" = super.buildPythonPackage rec { - pname = "whoosh"; - version = "2.7.4"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/25/2b/6beed2107b148edc1321da0d489afc4617b9ed317ef7b72d4993cad9b684/Whoosh-2.7.4.tar.gz"; - sha256 = "10qsqdjpbc85fykc1vgcs8xwbgn4l2l52c8d83xf1q59pwyn79bw"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal pkgs.lib.licenses.bsd2 ]; - }; - }; - "ws4py" = super.buildPythonPackage rec { - pname = "ws4py"; - version = "0.5.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/53/20/4019a739b2eefe9282d3822ef6a225250af964b117356971bd55e274193c/ws4py-0.5.1.tar.gz"; - sha256 = "10slbbf2jm4hpr92jx7kh7mhf48sjl01v2w4d8z3f1p0ybbp7l19"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = []; - meta = { - license = [ pkgs.lib.licenses.bsdOriginal ]; - }; - }; - "wsgiref" = super.buildPythonPackage rec { - pname = "wsgiref"; - version = "0.1.2"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/41/9e/309259ce8dff8c596e8c26df86dbc4e848b9249fd36797fd60be456f03fc/wsgiref-0.1.2.zip"; - sha256 = "0y8fyjmpq7vwwm4x732w97qbkw78rjwal5409k04cw4m03411rn7"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = [ - pkgs."unzip" - ]; - propagatedBuildInputs = []; - meta = { - license = [ { fullName = "PSF or ZPL"; } ]; - }; - }; - "zipp" = super.buildPythonPackage rec { - pname = "zipp"; - version = "1.2.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/78/08/d52f0ea643bc1068d6dc98b412f4966a9b63255d20911a23ac3220c033c4/zipp-1.2.0.tar.gz"; - sha256 = "1c91lnv1bxjimh8as27hz7bghsjkkbxn1d37xq7in9c82iai0167"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = [ - self."setuptools" - self."wheel" - self."setuptools-scm" - ]; - propagatedBuildInputs = [ - self."contextlib2" - ]; - meta = { - license = [ pkgs.lib.licenses.mit ]; - }; - }; - "zope.cachedescriptors" = super.buildPythonPackage rec { - pname = "zope.cachedescriptors"; - version = "4.3.1"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/2f/89/ebe1890cc6d3291ebc935558fa764d5fffe571018dbbee200e9db78762cb/zope.cachedescriptors-4.3.1.tar.gz"; - sha256 = "0jhr3m5p74c6r7k8iv0005b8bfsialih9d7zl5vx38rf5xq1lk8z"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."setuptools" - ]; - meta = { - license = [ pkgs.lib.licenses.zpl21 ]; - }; - }; - "zope.deprecation" = super.buildPythonPackage rec { - pname = "zope.deprecation"; - version = "4.4.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/34/da/46e92d32d545dd067b9436279d84c339e8b16de2ca393d7b892bc1e1e9fd/zope.deprecation-4.4.0.tar.gz"; - sha256 = "1pz2cv7gv9y1r3m0bdv7ks1alagmrn5msm5spwdzkb2by0w36i8d"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."setuptools" - ]; - meta = { - license = [ pkgs.lib.licenses.zpl21 ]; - }; - }; - "zope.event" = super.buildPythonPackage rec { - pname = "zope.event"; - version = "4.4"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/4c/b2/51c0369adcf5be2334280eed230192ab3b03f81f8efda9ddea6f65cc7b32/zope.event-4.4.tar.gz"; - sha256 = "1ksbc726av9xacml6jhcfyn828hlhb9xlddpx6fcvnlvmpmpvhk9"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."setuptools" - ]; - meta = { - license = [ pkgs.lib.licenses.zpl21 ]; - }; - }; - "zope.interface" = super.buildPythonPackage rec { - pname = "zope.interface"; - version = "4.6.0"; - src = fetchurl { - url = "https://files.pythonhosted.org/packages/4e/d0/c9d16bd5b38de44a20c6dc5d5ed80a49626fafcb3db9f9efdc2a19026db6/zope.interface-4.6.0.tar.gz"; - sha256 = "1rgh2x3rcl9r0v0499kf78xy86rnmanajf4ywmqb943wpk50sg8v"; - }; - format = "setuptools"; - doCheck = false; - buildInputs = []; - checkInputs = []; - nativeBuildInputs = []; - propagatedBuildInputs = [ - self."setuptools" - ]; - meta = { - license = [ pkgs.lib.licenses.zpl21 ]; - }; - }; -} diff --git a/pkgs/shell-generate.nix b/pkgs/shell-generate.nix deleted file mode 100755 --- a/pkgs/shell-generate.nix +++ /dev/null @@ -1,73 +0,0 @@ -{ pkgs ? (import {}) -, pythonPackages ? "python27Packages" -}: - -with pkgs.lib; - -let - _pythonPackages = pythonPackages; - -in - -let - pythonPackages = getAttr _pythonPackages pkgs; - - pip2nix = import ./nix-common/pip2nix.nix { - inherit - pkgs - pythonPackages; - }; - -in - -pkgs.stdenv.mkDerivation { - name = "pip2nix-generated"; - - buildInputs = [ - # Allows to generate python packages - pip2nix.pip2nix - pip2nix.pip - pip2nix.pip-tools - - # compile using ffi - pkgs.libffi - - pythonPackages.cython - - # Allows to generate node dependencies - pkgs.nodePackages.node2nix - - # We need mysql_config to be around - pkgs.libmysqlclient - - # We need postgresql to be around - pkgs.postgresql - - # we need the below for saml - pkgs.libxml2 - pkgs.libxslt - pkgs.xmlsec - - # Curl is needed for pycurl - pkgs.curl - ]; - - shellHook = '' - runHook preShellHook - runHook postShellHook - ''; - - preShellHook = '' - echo "Starting Generate Shell" - # set unpack source date to 1980 to fix ZIP problems that does not support <1980 - export SOURCE_DATE_EPOCH=315532800 - export TMPDIR=/tmp - export LOCALE_ARCHIVE="${pkgs.glibcLocales}/lib/locale/locale-archive" - export LC_ALL="en_US.UTF-8" - export PYCURL_SSL_LIBRARY=openssl - - # Custom prompt to distinguish from other dev envs. - export PS1="\n\[\033[1;32m\][pip2nix-generate-shell]$\[\033[0m\] " - - ''; -} diff --git a/release.nix b/release.nix deleted file mode 100644 --- a/release.nix +++ /dev/null @@ -1,22 +0,0 @@ -# This file defines how to "build" for packaging. - -{ pkgs ? import {} -, system ? builtins.currentSystem -, doCheck ? false -}: - -let - enterprise_ce = import ./default.nix { - inherit - doCheck - system; - - # disable checkPhase for build - checkPhase = '' - ''; - - }; - -in { - build = enterprise_ce; -} diff --git a/shell.nix b/shell.nix deleted file mode 100644 --- a/shell.nix +++ /dev/null @@ -1,139 +0,0 @@ -# This file contains the adjustments which are desired for a development -# environment. - -{ pkgs ? (import {}) -, pythonPackages ? "python27Packages" -, doCheck ? false -, sourcesOverrides ? {} -, doDevelopInstall ? true -, doReleaseInstall ? false -}: - -let - # Get sources from config and update them with overrides. - sources = (pkgs.config.rc.sources or {}) // sourcesOverrides; - - enterprise-ce = import ./default.nix { - inherit - pythonPackages - doCheck; - }; - - ce-pythonPackages = enterprise-ce.pythonPackages; - - # This method looks up a path from `pkgs.config.rc.sources` and returns a - # shell script which does a `python setup.py develop` installation of it. If - # no path is found it will return an empty string. - optionalDevelopInstall = attributeName: - let - path = pkgs.lib.attrByPath [attributeName] null sources; - doDI = doDevelopInstall && path != null; - - in - # do develop installation with empty hosts to skip any package duplicates to - # be replaced. This only pushes the package to be locally available - pkgs.lib.optionalString doDI ('' - echo "[BEGIN] Develop install of '${attributeName}' from '${path}'" - pushd ${path} - python setup.py develop --prefix $tmp_path --allow-hosts "" - popd - echo "[DONE] Develop install of '${attributeName}' from '${path}'" - echo "" - ''); - - # This method looks up a path from `pkgs.config.rc.sources` and imports the - # default.nix file if it exists. It returns the list of build inputs. If no - # path is found it will return an empty list. - optionalDevelopInstallBuildInputs = attributeName: - let - path = pkgs.lib.attrByPath [attributeName] null sources; - nixFile = "${path}/default.nix"; - doDI = doDevelopInstall && path != null && pkgs.lib.pathExists "${nixFile}"; - - derivate = import "${nixFile}" { - inherit - doCheck - pythonPackages; - }; - in - pkgs.lib.lists.optionals doDI ( - derivate.propagatedBuildInputs - ); - - optionalBinDeps = attributeName: - let - path = pkgs.lib.attrByPath [attributeName] null sources; - nixFile = "${path}/default.nix"; - doDI = doDevelopInstall && path != null && pkgs.lib.pathExists "${nixFile}"; - - derivate = import "${nixFile}" { - inherit - doCheck - pythonPackages; - }; - in - pkgs.lib.optionalString doDI ('' - echo "Wrapping PATH with vcsserver vcs binaries" - export PATH="${derivate.vcs_pkgs.subversion}/bin:${derivate.vcs_pkgs.git}/bin:${derivate.pythonPackages.mercurial}/bin:$PATH" - ''); - - developInstalls = [ "rhodecode-vcsserver" ]; - -in enterprise-ce.override (attrs: rec { - # Avoid that we dump any sources into the store when entering the shell and - # make development a little bit more convenient. - src = null; - - # Add dependencies which are useful for the development environment. - buildInputs = - attrs.buildInputs ++ - (with ce-pythonPackages; - [ ipdb ] - ++ pkgs.lib.lists.optionals doReleaseInstall ( - [invoke bumpversion] - ) - ); - - # place to inject some required libs from develop installs - propagatedBuildInputs = - attrs.propagatedBuildInputs ++ - pkgs.lib.lists.concatMap optionalDevelopInstallBuildInputs developInstalls; - - - # Make sure we execute both hooks - shellHook = '' - runHook preShellHook - runHook postShellHook - ''; - - preShellHook = '' - echo "Entering rhodecode-ce" - - # Custom prompt to distinguish from other dev envs. - export PS1="\n\[\033[1;32m\][rhodecode-ce-shell:\w]$\[\033[0m\] " - - # Set locale - export LOCALE_ARCHIVE="${pkgs.glibcLocales}/lib/locale/locale-archive" - export LC_ALL="en_US.UTF-8" - - echo "Building frontend assets" - ${enterprise-ce.linkNodePackages} - - # Setup a temporary directory. - tmp_path=$(mktemp -d) - export PATH="$tmp_path/bin:$PATH" - export PYTHONPATH="$tmp_path/${ce-pythonPackages.python.sitePackages}:$PYTHONPATH" - mkdir -p $tmp_path/${ce-pythonPackages.python.sitePackages} - - # Develop installation - echo "[BEGIN]: develop install of rhodecode-enterprise-ce" - python setup.py develop --prefix $tmp_path --allow-hosts "" - ''; - - postShellHook = '' - echo "** Additional develop installs **" - '' + pkgs.lib.strings.concatMapStrings optionalDevelopInstall developInstalls + '' - '' + pkgs.lib.strings.concatMapStrings optionalBinDeps [ "rhodecode-vcsserver" ] + '' - ''; - -})