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

Commits on Mar 14, 2019

  1. Copy the full SHA
    2c4e220 View commit details
Showing with 10 additions and 4 deletions.
  1. +10 −4 pkgs/development/python-modules/pyrr/default.nix
14 changes: 10 additions & 4 deletions pkgs/development/python-modules/pyrr/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
{ stdenv, buildPythonPackage, fetchPypi
, setuptools, multipledispatch, numpy }:
{ stdenv
, buildPythonPackage
, fetchPypi
, setuptools
, multipledispatch
, numpy
}:

buildPythonPackage rec {
version = "0.10.1";
version = "0.10.2";
pname = "pyrr";

src = fetchPypi {
inherit pname version;
sha256 = "06305b2f555f8b8091a6c29a05d5d33f131c9dd268e22d94985e43ab5df70c1d";
sha256 = "1q9i4qa6ygr8hlpnw55s58naynxzwm0sc1m54wyy1ghbf8m8d2f0";
};

buildInputs = [ setuptools ];
@@ -17,5 +22,6 @@ buildPythonPackage rec {
description = "3D mathematical functions using NumPy";
homepage = https://github.com/adamlwgriffiths/Pyrr/;
license = licenses.bsd2;
maintainers = with maintainers; [ c0deaddict ];
};
}