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

Commits on Oct 23, 2019

  1. python37Packages.pyaxmlparser: 0.3.15 -> 0.3.21

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/python3.7-pyaxmlparser/versions
    r-ryantm authored and Jon committed Oct 23, 2019
    Copy the full SHA
    074c8d0 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/python-modules/pyaxmlparser/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/pyaxmlparser/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{ buildPythonPackage, stdenv, lxml, click, fetchFromGitHub, pytest, isPy3k }:

buildPythonPackage rec {
version = "0.3.15";
version = "0.3.21";
pname = "pyaxmlparser";

# the PyPI tarball doesn't ship tests.
src = fetchFromGitHub {
owner = "appknox";
repo = pname;
rev = "v${version}";
sha256 = "0p4x21rg8h7alrg2zk6rbgc3fj77fiyky4zzvziz2bp5jpx1pvzp";
sha256 = "1bphd2vl9akk78yqvvxcz36wmr47hp3nh6xyrdc8w1avy1aby1ij";
};

disabled = !isPy3k;