nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "unix-ar";
9 version = "0.2.1";
10 format = "wheel";
11
12 src = fetchPypi {
13 inherit format version;
14 pname = "unix_ar";
15 hash = "sha256-Kstxi8Ewi/gOW52iYU2CQswv475M2LL9Rxm84Ymq/PE=";
16 };
17
18 meta = {
19 description = "AR file handling for Python (including .deb files)";
20 homepage = "https://github.com/getninjas/unix_ar";
21 license = lib.licenses.bsd3;
22 maintainers = with lib.maintainers; [ tirimia ];
23 platforms = with lib.platforms; linux ++ darwin;
24 };
25}