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

Commits on Apr 7, 2020

  1. python3Packages.azure-storage: 0.20.3 -> 0.36.0

    Jonathan Ringer committed Apr 7, 2020
    Copy the full SHA
    729000e View commit details
Showing with 6 additions and 5 deletions.
  1. +6 −5 pkgs/development/python-modules/azure-storage/default.nix
11 changes: 6 additions & 5 deletions pkgs/development/python-modules/azure-storage/default.nix
Original file line number Diff line number Diff line change
@@ -10,20 +10,21 @@
}:

buildPythonPackage rec {
version = "0.20.3";
version = "0.36.0";
pname = "azure-storage";

src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "06bmw6k2000kln5jwk5r9bgcalqbyvqirmdh9gq4s6nb4fv3c0jb";
sha256 = "0pyasfxkin6j8j00qmky7d9cvpxgis4fi9bscgclj6yrpvf14qpv";
};

propagatedBuildInputs = [ azure-common dateutil requests ]
++ pkgs.lib.optionals (!isPy3k) [ futures ];

postInstall = ''
echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/__init__.py
postPatch = ''
rm azure_bdist_wheel.py
substituteInPlace setup.cfg \
--replace "azure-namespace-package = azure-nspkg" ""
'';

meta = with pkgs.lib; {