mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 22:06:00 +03:00
23 lines
539 B
Nix
23 lines
539 B
Nix
{ stdenv, fetchurl, pythonPackages }:
|
|
|
|
pythonPackages.buildPythonApplication {
|
|
name = "keepnote-0.7.8";
|
|
namePrefix = "";
|
|
|
|
src = fetchurl {
|
|
url = "http://keepnote.org/download/keepnote-0.7.8.tar.gz";
|
|
sha256 = "0nhkkv1n0lqf3zn17pxg5cgryv1wwlj4hfmhixwd76rcy8gs45dh";
|
|
};
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ pyGtkGlade ];
|
|
|
|
# Testing fails.
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Note taking application";
|
|
homepage = http://rasm.ods.org/keepnote;
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
};
|
|
}
|