mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
68 lines
1.6 KiB
Nix
68 lines
1.6 KiB
Nix
{ fetchurl
|
|
, lib, stdenv
|
|
, pythonPackages
|
|
}:
|
|
|
|
let
|
|
buildPythonPackage = pythonPackages.buildPythonPackage;
|
|
|
|
xe = buildPythonPackage rec {
|
|
url = "http://www.blarg.net/%7Esteveha/xe-0.7.4.tar.gz";
|
|
name = stdenv.lib.nameFromURL url ".tar";
|
|
src = fetchurl {
|
|
inherit url;
|
|
sha256 = "0v9878cl0y9cczdsr6xjy8v9l139lc23h4m5f86p4kpf2wlnpi42";
|
|
};
|
|
|
|
# error: invalid command 'test'
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
homepage = "http://home.blarg.net/~steveha/xe.html";
|
|
description = "XML elements";
|
|
};
|
|
};
|
|
|
|
in {
|
|
|
|
pyfeed = (buildPythonPackage rec {
|
|
url = "http://www.blarg.net/%7Esteveha/pyfeed-0.7.4.tar.gz";
|
|
|
|
name = stdenv.lib.nameFromURL url ".tar";
|
|
|
|
src = fetchurl {
|
|
inherit url;
|
|
sha256 = "1h4msq573m7wm46h3cqlx4rsn99f0l11rhdqgf50lv17j8a8vvy1";
|
|
};
|
|
|
|
propagatedBuildInputs = [ xe ];
|
|
|
|
# error: invalid command 'test'
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "http://home.blarg.net/~steveha/pyfeed.html";
|
|
description = "Tools for syndication feeds";
|
|
};
|
|
|
|
});
|
|
|
|
wokkel = buildPythonPackage (rec {
|
|
url = "http://wokkel.ik.nu/releases/0.7.0/wokkel-0.7.0.tar.gz";
|
|
name = stdenv.lib.nameFromURL url ".tar";
|
|
src = fetchurl {
|
|
inherit url;
|
|
sha256 = "0rnshrzw8605x05mpd8ndrx3ri8h6cx713mp8sl4f04f4gcrz8ml";
|
|
};
|
|
|
|
propagatedBuildInputs = with pythonPackages; [twisted dateutil];
|
|
|
|
meta = with lib; {
|
|
description = "Some (mainly XMPP-related) additions to twisted";
|
|
homepage = "http://wokkel.ik.nu/";
|
|
license = licenses.mit;
|
|
};
|
|
});
|
|
|
|
}
|