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

Commits on Nov 12, 2020

  1. pythonPackages.py-multihash: 0.2.3 -> 1.0.0

    (cherry picked from commit dd7b6a5)
    IvarWithoutBones committed Nov 12, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6d068f0 View commit details
  2. Merge pull request #103468 from IvarWithoutBones/fix-multihash-20.09

    [20.09] pythonPackages.py-multihash: 0.2.3 -> 1.0.0
    mweinelt authored Nov 12, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    87645f7 View commit details
Showing with 9 additions and 6 deletions.
  1. +9 −6 pkgs/development/python-modules/py-multihash/default.nix
15 changes: 9 additions & 6 deletions pkgs/development/python-modules/py-multihash/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ base58
, buildPythonPackage
, fetchPypi
, fetchFromGitHub
, isPy27
, lib
, morphys
@@ -14,11 +14,13 @@

buildPythonPackage rec {
pname = "py-multihash";
version = "0.2.3";
version = "1.0.0";

src = fetchPypi {
inherit pname version ;
sha256 = "f0ade4de820afdc4b4aaa40464ec86c9da5cae3a4578cda2daab4b0eb7e5b18d";
src = fetchFromGitHub {
owner = "multiformats";
repo = pname;
rev = "v${version}";
sha256 = "07qglrbgcb8sr9msqw2v7dqj9s4rs6nyvhdnx02i5w6xx5ibzi3z";
};

nativeBuildInputs = [
@@ -38,10 +40,11 @@ buildPythonPackage rec {
pytestcov
];

pythonImportsCheck = [ "multihash" ];

disabled = isPy27;

meta = with lib; {
broken = true;
description = "Self describing hashes - for future proofing";
homepage = "https://github.com/multiformats/py-multihash";
license = licenses.mit;