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

Commits on Apr 9, 2020

  1. Verified

    This commit was signed with the committer’s verified signature.
    infinisil Silvan Mosberger
    Copy the full SHA
    0473d4d View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/development/python-modules/traitsui/default.nix
10 changes: 5 additions & 5 deletions pkgs/development/python-modules/traitsui/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ stdenv, fetchPypi, buildPythonPackage
, traits, pyface, wxPython
{ lib, fetchPypi, buildPythonPackage
, traits, pyface, six
}:

buildPythonPackage rec {
@@ -11,14 +11,14 @@ buildPythonPackage rec {
sha256 = "0kw1xy5ax6l0lzmk7pfzjw6qs0idv78k3118my7cbvw1n5iiff28";
};

propagatedBuildInputs = [ traits pyface wxPython ];
propagatedBuildInputs = [ traits pyface six ];

doCheck = false; # Needs X server

meta = with stdenv.lib; {
meta = with lib; {
description = "Traits-capable windowing framework";
homepage = "https://github.com/enthought/traitsui";
maintainers = with stdenv.lib.maintainers; [ knedlsepp ];
maintainers = with maintainers; [ knedlsepp ];
license = licenses.bsdOriginal;
};
}