1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 02:46:28 +00:00
nixpkgs/pkgs/applications/office/keepnote/default.nix

23 lines
539 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonApplication {
2014-05-18 12:43:21 +01:00
name = "keepnote-0.7.8";
namePrefix = "";
src = fetchurl {
2014-05-18 12:43:21 +01:00
url = "http://keepnote.org/download/keepnote-0.7.8.tar.gz";
sha256 = "0nhkkv1n0lqf3zn17pxg5cgryv1wwlj4hfmhixwd76rcy8gs45dh";
};
2016-10-13 23:03:12 +01:00
propagatedBuildInputs = with pythonPackages; [ pyGtkGlade ];
# Testing fails.
doCheck = false;
meta = {
description = "Note taking application";
homepage = http://rasm.ods.org/keepnote;
license = stdenv.lib.licenses.gpl2Plus;
};
}