Merge pull request #38105 from ryantm/auto-update/beancount

beancount: 2.0rc1 -> 2.0.0
This commit is contained in:
Pascal Wittmann 2018-03-30 14:33:46 +02:00 committed by GitHub
commit 6547e61577
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,13 +1,13 @@
{ stdenv, fetchhg, pkgs, pythonPackages }:
pythonPackages.buildPythonApplication rec {
version = "2.0rc1";
version = "2.0.0";
name = "beancount-${version}";
namePrefix = "";
src = pkgs.fetchurl {
url = "mirror://pypi/b/beancount/${name}.tar.gz";
sha256 = "12vlkck4q3dax9866krp6963c6d845b7inkkwrlkk4njh84n71wf";
sha256 = "0wxwf02d3raglwqsxdsgf89fniakv1m19q825w76k5z004g18y42";
};
buildInputs = with pythonPackages; [ nose ];