Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 992ef89f9a7b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a6f8ad6283fc
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jan 4, 2020

  1. Copy the full SHA
    ea89d56 View commit details

Commits on Jan 8, 2020

  1. Merge pull request #76953 from marsam/python-pyramid-cleanup-dependen…

    …cies
    
    pythonPackages.pyramid: cleanup dependencies
    marsam authored Jan 8, 2020
    Copy the full SHA
    a6f8ad6 View commit details
Showing with 2 additions and 5 deletions.
  1. +2 −5 pkgs/development/python-modules/pyramid/default.nix
7 changes: 2 additions & 5 deletions pkgs/development/python-modules/pyramid/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, docutils
, virtualenv
, webtest
, zope_component
, hupper
, PasteDeploy
, plaster
, plaster-pastedeploy
, repoze_lru
, repoze_sphinx_autointerface
, translationstring
, venusian
, webob
@@ -28,9 +25,9 @@ buildPythonPackage rec {
sha256 = "d80ccb8cfa550139b50801591d4ca8a5575334adb493c402fce2312f55d07d66";
};

checkInputs = [ docutils virtualenv webtest zope_component ];
checkInputs = [ webtest zope_component ];

propagatedBuildInputs = [ hupper PasteDeploy plaster plaster-pastedeploy repoze_lru repoze_sphinx_autointerface translationstring venusian webob zope_deprecation zope_interface ];
propagatedBuildInputs = [ hupper PasteDeploy plaster plaster-pastedeploy repoze_lru translationstring venusian webob zope_deprecation zope_interface ];

# Failing tests
# https://github.com/Pylons/pyramid/issues/1899