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: b24a32d0c733
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e5f671a7dcb9
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 27, 2019

  1. pythonPackages.rpyc: fix tests to actually execute

    risicle authored and Jon committed Oct 27, 2019
    Copy the full SHA
    e5f671a View commit details
Showing with 14 additions and 5 deletions.
  1. +14 −5 pkgs/development/python-modules/rpyc/default.nix
19 changes: 14 additions & 5 deletions pkgs/development/python-modules/rpyc/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, fetchFromGitHub
, nose
, plumbum
}:
@@ -9,12 +9,21 @@ buildPythonPackage rec {
pname = "rpyc";
version = "4.1.2";

src = fetchPypi {
inherit pname version;
sha256 = "0df276076891797bbaaff322cc6debb02e10817426bba00a9beca915053a8a91";
src = fetchFromGitHub {
owner = "tomerfiliba";
repo = pname;
rev = version;
sha256 = "1xvrcik1650r1412fg79va0kd0fgg1ml241y1ai429qwy87dil1k";
};

propagatedBuildInputs = [ nose plumbum ];
propagatedBuildInputs = [ plumbum ];

checkInputs = [ nose ];
checkPhase = ''
cd tests
# some tests have added complexities and some tests attempt network use
nosetests -I test_deploy -I test_gevent_server -I test_ssh -I test_registry
'';

meta = with stdenv.lib; {
description = "Remote Python Call (RPyC), a transparent and symmetric RPC library";