3
0
Fork 0
forked from mirrors/nixpkgs

python: breathe: 4.7.3 -> 4.9.1

This commit is contained in:
Frederik Rietdijk 2018-06-12 18:46:58 +02:00
parent 33e04c8ee9
commit 174963fc65

View file

@ -1,13 +1,13 @@
{ lib, fetchurl, buildPythonPackage, docutils, six, sphinx, isPy3k }:
buildPythonPackage rec {
version = "4.7.3";
version = "4.9.1";
pname = "breathe";
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://pypi/b/breathe/${name}.tar.gz";
sha256 = "d0b0e029daba6c3889d15d6c2dd4b0e9d468dc631d41021d0576c1b0dabee302";
sha256 = "76e1f3706efeda2610d9a8e7b421d2877ff0654a3fe6d3190a8686536111a684";
};
propagatedBuildInputs = [ docutils six sphinx ];