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

Commits on Apr 9, 2020

  1. python2Packages.apptools: 4.4.0 -> 4.5.0

    bcdarwin authored and Jon committed Apr 9, 2020
    Copy the full SHA
    e67d840 View commit details
Showing with 9 additions and 8 deletions.
  1. +9 −8 pkgs/development/python-modules/apptools/default.nix
17 changes: 9 additions & 8 deletions pkgs/development/python-modules/apptools/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{ stdenv, fetchPypi, buildPythonPackage
, traits, traitsui, configobj
{ lib, fetchPypi, buildPythonPackage
, configobj, six, traitsui
, nose, tables, pandas
}:

buildPythonPackage rec {
pname = "apptools";
version = "4.4.0";
version = "4.5.0";

src = fetchPypi {
inherit pname version;
sha256 = "1dw6vvq7lqkj7mgn3s7r5hs937kl4mj5g7jf2qgvhdld9lsc5xbk";
sha256 = "10h52ibhr2aw076pivqxiajr9rpcr1mancg6xlpxzckcm3if02i6";
};

propagatedBuildInputs = [ traits traitsui configobj ];
propagatedBuildInputs = [ configobj six traitsui ];

checkInputs = [
nose
@@ -21,11 +21,12 @@ buildPythonPackage rec {
];

doCheck = true;
checkPhase = ''HOME=$TMP nosetests'';

meta = with stdenv.lib; {
meta = with lib; {
description = "Set of packages that Enthought has found useful in creating a number of applications.";
homepage = https://github.com/enthought/apptools;
maintainers = with stdenv.lib.maintainers; [ knedlsepp ];
homepage = "https://github.com/enthought/apptools";
maintainers = with maintainers; [ knedlsepp ];
license = licenses.bsdOriginal;
};
}