mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
python.pkgs.m2r: 0.1.5 -> 0.1.6
This commit is contained in:
parent
6df7edd464
commit
e6ff0aa597
1 changed files with 5 additions and 5 deletions
|
@ -1,13 +1,13 @@
|
|||
{ stdenv, buildPythonPackage, fetchurl,
|
||||
{ stdenv, buildPythonPackage, fetchPypi,
|
||||
mistune, docutils } :
|
||||
buildPythonPackage rec {
|
||||
pname = "m2r";
|
||||
name = "${pname}-${version}";
|
||||
version = "0.1.5";
|
||||
version = "0.1.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://pypi/m/m2r/${name}.tar.gz";
|
||||
sha256 = "08rjn3x1qag60wawjnq95wmgijrn33apr4fhj01s2p6hmrqgfj1l";
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "a26bc2e25e0ad3f8650385aea25cf734ac4fcd30e54faec92fd39675da75e527";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ mistune docutils ];
|
||||
|
|
Loading…
Reference in a new issue