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

Commits on Nov 11, 2020

  1. Copy the full SHA
    dd7b6a5 View commit details
  2. Merge pull request #101801 from IvarWithoutBones/fix-multihash

    pythonPackages.py-multihash: 0.2.3 -> 1.0.0
    mweinelt authored Nov 11, 2020
    Copy the full SHA
    1da7e9e View commit details
Showing with 9 additions and 5 deletions.
  1. +9 −5 pkgs/development/python-modules/py-multihash/default.nix
14 changes: 9 additions & 5 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,6 +40,8 @@ buildPythonPackage rec {
pytestcov
];

pythonImportsCheck = [ "multihash" ];

disabled = isPy27;

meta = with lib; {