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: 3b7fb1518280
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7435c633f673
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 9, 2019

  1. Copy the full SHA
    e0b3eb0 View commit details
  2. Merge pull request #57128 from FlorianFranzen/pyext

    pythonPackages.pyext: 0.6 -> 0.8
    worldofpeace authored Mar 9, 2019
    Copy the full SHA
    7435c63 View commit details
Showing with 12 additions and 7 deletions.
  1. +12 −7 pkgs/development/python-modules/pyext/default.nix
19 changes: 12 additions & 7 deletions pkgs/development/python-modules/pyext/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
{ stdenv, buildPythonPackage, fetchPypi }:
{ stdenv, buildPythonPackage, fetchFromGitHub }:

buildPythonPackage rec {
name = pname + "-" + version;
pname = "pyext";
version = "0.6";
version = "0.8";

src = fetchPypi {
inherit pname version;
sha256 = "6c406cf71b991e1fc5a7f963d3a289525bce5e7ad1c43b697d9f5223185fcaef";
# Latest release not on Pypi or tagged since 2015
src = fetchFromGitHub {
owner = "kirbyfan64";
repo = "PyExt";
rev = "1e018b12752ceb279f11aee123ed773d63dcec7e";
sha256 = "16km897ng6lgjs39hv83xragdxh0mhyw6ds0qkm21cyci1k5m1vm";
};

# Has no test suite
doCheck = false;

meta = with stdenv.lib; {
description = "Simple Python extensions.";
description = "Simple Python extensions";
homepage = https://github.com/kirbyfan64/PyExt;
license = licenses.mit;
maintainers = with maintainers; [ edwtjo ];