Skip to content
Closed
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pkgs/applications/office/fava/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ let
in
buildPythonApplication rec {
pname = "fava";
version = "1.6";
version = "1.7";
name = "${pname}-${version}";

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This line isn't needed.


src = fetchPypi {
inherit pname version;
sha256 = "0iif4imx76ra0lsisksrq5vf54wbivnrb3xqz6mkx9lik3pp5sbx";
sha256 = "0bxnh977r821b8vy36z81k40pazbxspx4wa9sp4ppanx7cha9sy4";
};

doCheck = false;

propagatedBuildInputs = with python3.pkgs;
[ flask dateutil pygments wheel markdown2 flaskbabel tornado
click beancount ];
click beancount uritemplate httplib2 Babel ];

meta = {
homepage = https://beancount.github.io/fava;
Expand Down
10 changes: 5 additions & 5 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -623,12 +623,12 @@ in {
};

atomicwrites = buildPythonPackage rec {
version = "0.1.9";
version = "1.1.5";

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As atomicwrites was moved to a dedicated directory in #38439, it probably makes sense to rebase on staging.

name = "atomicwrites-${version}";

src = pkgs.fetchurl {
url = "mirror://pypi/a/atomicwrites/atomicwrites-${version}.tar.gz";
sha256 = "08s05h211r07vs66r4din3swrbzb344vli041fihpg34q3lcxpvw";
sha256 = "11bm90fwm2avvf4f3ib8g925w7jr4m11vcsinn1bi6ns4bm32214";
};

meta = {
Expand Down Expand Up @@ -12381,14 +12381,14 @@ in {
pygit2 = callPackage ../development/python-modules/pygit2 { };

Babel = buildPythonPackage (rec {

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be nice if you could move this expression to pkgs/development/python-modules/Babel/default.nix.

name = "Babel-2.3.4";
name = "Babel-2.5.3";

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use pname and version instead.


src = pkgs.fetchurl {

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fetchPypi

url = "mirror://pypi/B/Babel/${name}.tar.gz";
sha256 = "0x98qqqw35xllpcama013a9788ly84z8dm1w2wwfpxh2710c8df5";
sha256 = "050zyi300wsyqq1cj0ajrskb5kkv0wxblz124g9yv4s3vmpwpr4c";
};

buildInputs = with self; [ pytest ];
buildInputs = with self; [ pytest freezegun ];
propagatedBuildInputs = with self; [ pytz ];

meta = {
Expand Down