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

Commits on Oct 7, 2019

  1. Copy the full SHA
    681e63a View commit details

Commits on Oct 8, 2019

  1. Merge pull request #70661 from makefu/pkgs/nixpkgs-pytools/update

    pythonPackages.nixpkgs-pytools: 1.0.1 -> 1.3.0
    nlewo authored Oct 8, 2019
    Copy the full SHA
    f6b8aed View commit details
Showing with 4 additions and 2 deletions.
  1. +4 −2 pkgs/development/python-modules/nixpkgs-pytools/default.nix
6 changes: 4 additions & 2 deletions pkgs/development/python-modules/nixpkgs-pytools/default.nix
Original file line number Diff line number Diff line change
@@ -3,22 +3,24 @@
, fetchPypi
, jinja2
, setuptools
, rope
, isPy27
}:

buildPythonPackage rec {
pname = "nixpkgs-pytools";
version = "1.0.1";
version = "1.3.0";
disabled = isPy27;

src = fetchPypi {
inherit pname version;
sha256 = "0796c6e95daeb3d7e61c9c53126d95ba6a48f84b995b12b60f45619caf28a574";
sha256 = "11skcbi1lf9qcv9j5ikifb4pakhbbygqpcmv3390j7gxsa85cn19";
};

propagatedBuildInputs = [
jinja2
setuptools
rope
];

# tests require network ..