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

Commits on Oct 13, 2018

  1. python36Packages.pyvoro: init at 1.3.2

    python wrapper to voro++
    costrouc authored and FRidh committed Oct 13, 2018
    Copy the full SHA
    e8bcf55 View commit details
Showing with 26 additions and 0 deletions.
  1. +24 −0 pkgs/development/python-modules/pyvoro/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
24 changes: 24 additions & 0 deletions pkgs/development/python-modules/pyvoro/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
version = "1.3.2";
pname = "pyvoro";

src = fetchPypi {
inherit pname version;
sha256 = "f31c047f6e4fc5f66eb0ab43afd046ba82ce247e18071141791364c4998716fc";
};

# No tests in package
doCheck = false;

meta = with stdenv.lib; {
homepage = https://github.com/joe-jordan/pyvoro;
description = "2D and 3D Voronoi tessellations: a python entry point for the voro++ library";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -574,6 +574,8 @@ in {

pyxml = disabledIf isPy3k (callPackage ../development/python-modules/pyxml{ });

pyvoro = callPackage ../development/python-modules/pyvoro { };

relatorio = callPackage ../development/python-modules/relatorio { };

pyzufall = callPackage ../development/python-modules/pyzufall { };