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

Commits on Jun 3, 2019

  1. python27Packages.python-stdnum: 1.10 -> 1.11

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/python2.7-python-stdnum/versions
    r-ryantm authored and marsam committed Jun 3, 2019
    Copy the full SHA
    a0d1442 View commit details
  2. Merge pull request #62539 from r-ryantm/auto-update/python2.7-python-…

    …stdnum
    
    python27Packages.python-stdnum: 1.10 -> 1.11
    marsam authored Jun 3, 2019
    Copy the full SHA
    168d253 View commit details
Showing with 10 additions and 5 deletions.
  1. +10 −5 pkgs/development/python-modules/python-stdnum/default.nix
15 changes: 10 additions & 5 deletions pkgs/development/python-modules/python-stdnum/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
{ lib, fetchPypi, buildPythonPackage, isPy3k }:
{ lib, fetchPypi, buildPythonPackage, nose }:

buildPythonPackage rec {
version = "1.10";
version = "1.11";
pname = "python-stdnum";
# Failing tests and dependency issue on Py3k
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "0prs63q8zdgwr5cxc5a43zvsm66l0gf9jk19qdf85m6isnp5186a";
sha256 = "d5f0af1bee9ddd9a20b398b46ce062dbd4d41fcc9646940f2667256a44df3854";
};

checkInputs = [ nose ];

checkPhase = ''
nosetests
'';

meta = {
homepage = https://arthurdejong.org/python-stdnum/;
description = "Python module to handle standardized numbers and codes";